Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102737861
PhabricatorOAuthServerAuthorizationCode.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
Sun, Feb 23, 16:27
Size
642 B
Mime Type
text/x-php
Expires
Tue, Feb 25, 16:27 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24379714
Attached To
rPH Phabricator
PhabricatorOAuthServerAuthorizationCode.php
View Options
<?php
final
class
PhabricatorOAuthServerAuthorizationCode
extends
PhabricatorOAuthServerDAO
{
protected
$id
;
protected
$code
;
protected
$clientPHID
;
protected
$clientSecret
;
protected
$userPHID
;
protected
$redirectURI
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'code'
=>
'text32'
,
'clientSecret'
=>
'text32'
,
'redirectURI'
=>
'text255'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'code'
=>
array
(
'columns'
=>
array
(
'code'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment