mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
694a8543d8
Summary: Ref T7303. This inches toward properly-behaved cluster logout. - Use IDs instead of PHIDs in URIs. - Slightly more modern code. - Fix some crumb stuff. Test Plan: Created, edited, viewed, deleted, showed secret for, authorized, test-auth'd an application. Reviewers: chad Reviewed By: chad Maniphest Tasks: T7303 Differential Revision: https://secure.phabricator.com/D15592
8 lines
146 B
PHP
8 lines
146 B
PHP
<?php
|
|
|
|
abstract class PhabricatorOAuthServerController
|
|
extends PhabricatorController {
|
|
|
|
const CONTEXT_AUTHORIZE = 'oauthserver.authorize';
|
|
|
|
}
|