Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107791920
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
Thu, Apr 10, 20:08
Size
639 B
Mime Type
text/x-php
Expires
Sat, Apr 12, 20:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25479731
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
;
public
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