mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
15 lines
447 B
PHP
15 lines
447 B
PHP
|
<?php
|
||
|
|
||
|
interface PhabricatorSSHPublicKeyInterface {
|
||
|
|
||
|
/**
|
||
|
* Provide a URI for SSH key workflows to return to after completing.
|
||
|
*
|
||
|
* When an actor adds, edits or deletes a public key, they'll be returned to
|
||
|
* this URI. For example, editing user keys returns the actor to the settings
|
||
|
* panel. Editing device keys returns the actor to the device page.
|
||
|
*/
|
||
|
public function getSSHPublicKeyManagementURI(PhabricatorUser $viewer);
|
||
|
|
||
|
}
|