Nikolas Rimikis
1 year ago
2 changed files with 68 additions and 23 deletions
@ -1,25 +1,65 @@
|
||||
// ignore_for_file: public_member_api_docs |
||||
|
||||
/// IDs of the apps. |
||||
final class AppIDs { |
||||
static const filesSharing = 'files_sharing'; |
||||
static const filesVersions = 'files_versions'; |
||||
static const files = 'files'; |
||||
static const updatenotification = 'updatenotification'; |
||||
/// ID for the comments app. |
||||
static const comments = 'comments'; |
||||
|
||||
/// ID for the core app. |
||||
static const core = 'core'; |
||||
|
||||
/// ID for the dashboard app. |
||||
static const dashboard = 'dashboard'; |
||||
static const uppush = 'uppush'; |
||||
static const settings = 'settings'; |
||||
|
||||
/// ID for the dav app. |
||||
static const dav = 'dav'; |
||||
static const userStatus = 'user_status'; |
||||
static const notifications = 'notifications'; |
||||
static const notes = 'notes'; |
||||
static const news = 'news'; |
||||
static const core = 'core'; |
||||
static const filesTrashbin = 'files_trashbin'; |
||||
static const comments = 'comments'; |
||||
static const sharebymail = 'sharebymail'; |
||||
|
||||
/// ID for the files app. |
||||
static const files = 'files'; |
||||
|
||||
/// ID for the files_external app. |
||||
static const filesExternal = 'files_external'; |
||||
|
||||
/// ID for the files_reminders app. |
||||
static const filesReminders = 'files_reminders'; |
||||
|
||||
/// ID for the files_sharing app. |
||||
static const filesSharing = 'files_sharing'; |
||||
|
||||
/// ID for the files_trashbin app. |
||||
static const filesTrashbin = 'files_trashbin'; |
||||
|
||||
/// ID for the files_versions app. |
||||
static const filesVersions = 'files_versions'; |
||||
|
||||
/// ID for the news app. |
||||
static const news = 'news'; |
||||
|
||||
/// ID for the notes app. |
||||
static const notes = 'notes'; |
||||
|
||||
/// ID for the notifications app. |
||||
static const notifications = 'notifications'; |
||||
|
||||
/// ID for the provisioning_api app. |
||||
static const provisioningApi = 'provisioning_api'; |
||||
|
||||
/// ID for the settings app. |
||||
static const settings = 'settings'; |
||||
|
||||
/// ID for the sharebymail app. |
||||
static const sharebymail = 'sharebymail'; |
||||
|
||||
/// ID for the theming app. |
||||
static const theming = 'theming'; |
||||
|
||||
/// ID for the updatenotification app. |
||||
static const updatenotification = 'updatenotification'; |
||||
|
||||
/// ID for the uppush app. |
||||
static const uppush = 'uppush'; |
||||
|
||||
/// ID for the user_status app. |
||||
static const userStatus = 'user_status'; |
||||
|
||||
/// ID for the weather_status app. |
||||
static const weatherStatus = 'weather_status'; |
||||
} |
||||
|
Loading…
Reference in new issue