Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108378134
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
Wed, Apr 16, 08:32
Size
576 B
Mime Type
text/x-php
Expires
Fri, Apr 18, 08:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25583597
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