Organisation registration process implemented with configurable approval workflow

This commit is contained in:
2022-02-10 13:00:51 +00:00
parent fade1f8441
commit b64b4d72f9
23 changed files with 1453 additions and 7 deletions

View File

@@ -43,6 +43,14 @@ return [
'MEMBER_COUNT' => '# Members <sub>(excl admins)</sub>',
'ADMIN_COUNT' => '# Admins',
'REGISTER' => 'Register organisation',
'REGISTRATION_SUCCESSFUL' => 'Successfully registered organisation <strong>{{name}}</strong>',
'CANCEL_REGISTRATION' => 'Cancel organisation registration',
'CANCEL_REGISTRATION_CONFIRM' => 'Are you sure you want to cancel the registration request for organisation <strong>{{name}}</strong>?',
'CANCEL_REGISTRATION_YES' => 'Yes, cancel organisation registration',
'CANCEL_REGISTRATION_SUCCESSFUL' => 'Successfully cancelled registration of organisation <strong>{{name}}</strong>',
'SELF' => 'My Organisations',
'MANAGE' => 'Manage Organisations',
@@ -57,6 +65,12 @@ return [
'SLUG' => [
'IN_USE' => 'Organisation slug <strong>{{slug}}</strong> is already in use.',
],
'APPROVAL' => [
'PENDING' => 'This organisation is pending approval!',
'TOKEN_NOT_FOUND' => 'Approval token does not exist / Organisation is already approved/rejected.',
'APPROVED' => 'You have successfully approved the organisation <strong>{{name}}</strong>.',
'REJECTED' => 'You have successfully rejected the organisation <strong>{{name}}</strong>.',
],
],
'MEMBER' => [
@@ -78,7 +92,9 @@ return [
'SLUG_NOT_IN_USE' => 'A <strong>{{slug}}</strong> slug does not exist',
'LEAVE_CANNOT_UNDONE' => 'This action cannot be undone.',
'APPROVED' => 'Approved',
'PENDING' => 'Pending',
'CANCEL_REGISTRATION' => 'Cancel registration request',
'APPROVED' => 'Approved',
'PENDING' => 'Pending',
'APPROVE' => 'Approve',
'REJECT' => 'Reject',
];