summaryrefslogtreecommitdiff
path: root/app/views/shared/tokens/_scopes_list.html.haml
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-181-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-091-1/+1
|
* Externalize strings of access tokens page in user profileantony liu2019-06-261-1/+1
|
* View-related (and other minor) changes to !5951 based on @rymai's review.Timothy Andrew2016-12-161-10/+13
| | | | | | | | | | | | | | | - The `scopes_form` partial can be used in the `admin/applications` view as well - Don't allow partials to access instance variables directly. Instead, pass in the instance variables as local variables, and use `local_assigns.fetch` to assert that the variables are passed in as expected. - Change a few instances of `render :partial` to `render` - Remove an instance of `required: false` in a view, since this is the default - Inline many instances of a local variable (`ip = 'ip'`) in `auth_spec`
* Move the scopes form/list view into a partial.Timothy Andrew2016-12-161-0/+10
- The list of scopes that's displayed while creating a personal access token is identical to the list that's displayed while creating an OAuth application. Extract these into a partial. - The list of scopes that's displayed while in the show page for an OAuth token in the profile settings and admin settings are identical. Extract these into a partial.