Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F118700659
PhabricatorConduitCertificateToken.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jun 21, 17:32
Size
576 B
Mime Type
text/x-php
Expires
Mon, Jun 23, 17:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26908972
Attached To
rPH Phabricator
PhabricatorConduitCertificateToken.php
View Options
<?php
final
class
PhabricatorConduitCertificateToken
extends
PhabricatorConduitDAO
{
protected
$userPHID
;
protected
$token
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'token'
=>
'text64?'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'userPHID'
=>
array
(
'columns'
=>
array
(
'userPHID'
),
'unique'
=>
true
,
),
'token'
=>
array
(
'columns'
=>
array
(
'token'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment