Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dashboard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
red-giant
dashboard
Merge requests
!53
Feature/authorization/curry
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/authorization/curry
feature/authorization/curry
into
dev
Overview
0
Commits
10
Pipelines
1
Changes
46
Merged
Defendi Alberto
requested to merge
feature/authorization/curry
into
dev
3 years ago
Overview
0
Commits
10
Pipelines
1
Changes
46
Expand
0
0
Merge request reports
Compare
dev
version 1
d3a527bb
3 years ago
dev (base)
and
latest version
latest version
d3a527bb
10 commits,
3 years ago
version 1
d3a527bb
14 commits,
3 years ago
46 files
+
59
−
259
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
46
Search (e.g. *.vue) (Ctrl+P)
src/api/userRoles.ts
+
2
−
1
Options
export
enum
Roles
{
/** Website visitor, is not logged. Can access to NonAuthRoutes */
visitor
=
''
,
/** Can access to
private and restricted routes depending on their permissions level
. */
/** Can access to
routes wrapped by withAuthorization
. */
senior
=
'
senior
'
,
admin
=
'
admin
'
,
operator
=
'
operator
'
,
driver
=
'
driver
'
,
}
Loading