summaryrefslogtreecommitdiff
path: root/app/views/shared/tokens
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@13-0-stable-eeGitLab Bot2020-05-201-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
|
* Created some more qa elementsSanad Liaquat2019-01-161-1/+1
|
* Replace label-light with label-bold. Because it's bold, not lightAnnabel Dunstone Gray2018-07-191-1/+1
|
* Style updates for personal access token formPaul Slaughter2018-06-291-4/+4
|
* Update _scopes_form.html.haml to remove duplicate informationMarcel Amirault2018-06-261-1/+0
|
* Resolve "Labels were bold in 10.8 but not with bootstrap4"Annabel Gray2018-06-071-1/+1
|
* Merge branch '32059-fix-oauth-phishing' into 'security-10-1'Douwe Maan2017-11-101-0/+1
| | | | | | Prevent OAuth phishing attack by presenting detailed wording about app to user during authorization See merge request gitlab/gitlabhq!2205
* HAMLLint: Fix `UnnecessaryStringOutput` offencesKushal Pandya2017-01-241-2/+2
|
* View-related (and other minor) changes to !5951 based on @rymai's review.Timothy Andrew2016-12-162-11/+18
| | | | | | | | | | | | | | | - 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-162-0/+15
- 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.