Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Create invite-users page and route #479

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
WIP: Create invite-users page and route
richford committed Apr 4, 2024
commit 54ae7c55d28bfc9e507ce09f8cf097aa75f8451f
2 changes: 1 addition & 1 deletion roar-firebase-functions
7 changes: 7 additions & 0 deletions src/router/index.js
Original file line number Diff line number Diff line change
@@ -266,6 +266,13 @@ const routes = [
component: () => import('../components/ListUsers.vue'),
meta: { pageTitle: 'List users', requireAdmin: true },
},
{
path: '/invite-users/:orgType/:orgId/:orgName',
name: 'InviteUsers',
props: true,
component: () => import('../pages/InviteUsers.vue'),
meta: { pageTitle: 'Invite users to an organization', requireSuperAdmin: true },
},
{
path: '/administration/:administrationId/:orgType/:orgId',
name: 'ViewAdministration',