Changeset View
Changeset View
Standalone View
Standalone View
src/applications/repository/storage/PhabricatorRepositoryURI.php
| Show All 31 Lines | final class PhabricatorRepositoryURI | ||||
| const IO_NONE = 'none'; | const IO_NONE = 'none'; | ||||
| const IO_READ = 'read'; | const IO_READ = 'read'; | ||||
| const IO_READWRITE = 'readwrite'; | const IO_READWRITE = 'readwrite'; | ||||
| protected function getConfiguration() { | protected function getConfiguration() { | ||||
| return array( | return array( | ||||
| self::CONFIG_AUX_PHID => true, | self::CONFIG_AUX_PHID => true, | ||||
| self::CONFIG_COLUMN_SCHEMA => array( | self::CONFIG_COLUMN_SCHEMA => array( | ||||
| 'uri' => 'text', | 'uri' => 'text255', | ||||
| 'builtinProtocol' => 'text32?', | 'builtinProtocol' => 'text32?', | ||||
| 'builtinIdentifier' => 'text32?', | 'builtinIdentifier' => 'text32?', | ||||
| 'ioType' => 'text32', | 'ioType' => 'text32', | ||||
| 'displayType' => 'text32', | 'displayType' => 'text32', | ||||
| 'isDisabled' => 'bool', | 'isDisabled' => 'bool', | ||||
| ), | ), | ||||
| self::CONFIG_KEY_SCHEMA => array( | self::CONFIG_KEY_SCHEMA => array( | ||||
| 'key_builtin' => array( | 'key_builtin' => array( | ||||
| ▲ Show 20 Lines • Show All 252 Lines • Show Last 20 Lines | |||||