13 lines
513 B
Dart
13 lines
513 B
Dart
// Centralized identifiers for mock auth/permission data to keep the
|
|
// mock services in sync and make it easy to swap in a real API later.
|
|
const String mockOrganizationRef = 'org-sendico';
|
|
|
|
const String companyRoleId = 'role-company';
|
|
const String recipientRoleId = 'role-recipient';
|
|
|
|
const String companyAccountRef = 'account-company';
|
|
const String recipientAccountRef = 'account-recipient';
|
|
|
|
const String accountsPolicyDescriptionId = 'policy-accounts';
|
|
const String rolesPolicyDescriptionId = 'policy-roles';
|