Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / auth / sshkey / PhabricatorSSHPublicKeyInterface.php
blob7d1be0b5ad3db1863eb5a57ef7fa19b06de7897a
1 <?php
3 interface PhabricatorSSHPublicKeyInterface {
5 /**
6 * Provide a URI for SSH key workflows to return to after completing.
8 * When an actor adds, edits or deletes a public key, they'll be returned to
9 * this URI. For example, editing user keys returns the actor to the settings
10 * panel. Editing device keys returns the actor to the device page.
12 public function getSSHPublicKeyManagementURI(PhabricatorUser $viewer);
15 /**
16 * Provide a default name for generated SSH keys.
18 public function getSSHKeyDefaultName();
20 public function getSSHKeyNotifyPHIDs();