Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112856842
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
Tue, May 13, 08:21
Size
642 B
Mime Type
text/x-php
Expires
Thu, May 15, 08:21 (2 d)
Engine
blob
Format
Raw Data
Handle
26109500
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