Files
paperless-mobile/lib/routes/routes.dart
2023-10-03 17:49:38 +02:00

27 lines
1.0 KiB
Dart

class R {
const R._();
static const landing = "landing";
static const login = "login";
static const documents = "documents";
static const verifyIdentity = "verifyIdentity";
static const switchingAccounts = "switchingAccounts";
static const savedView = "savedView";
static const createSavedView = "createSavedView";
static const editSavedView = "editSavedView";
static const documentDetails = "documentDetails";
static const editDocument = "editDocument";
static const labels = "labels";
static const createLabel = "createLabel";
static const editLabel = "editLabel";
static const scanner = "scanner";
static const uploadDocument = "upload";
static const inbox = "inbox";
static const documentPreview = "documentPreview";
static const settings = "settings";
static const linkedDocuments = "linkedDocuments";
static const bulkEditDocuments = "bulkEditDocuments";
static const uploadQueue = "uploadQueue";
static const checkingLogin = "checkingLogin";
static const loggingOut = "loggingOut";
}