summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/deploy_keys
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@15-5-stable-eev15.5.0-rc42GitLab Bot2022-10-201-4/+4
|
* Add latest changes from gitlab-org/gitlab@15-4-stable-eev15.4.0-rc42GitLab Bot2022-09-193-6/+6
|
* Add latest changes from gitlab-org/gitlab@15-2-stable-eev15.2.0-rc42GitLab Bot2022-07-201-4/+14
|
* Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot2021-07-201-4/+14
|
* Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot2021-05-194-49/+121
|
* Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot2021-02-183-4/+4
|
* Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher2021-01-204-7/+7
|
* Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot2020-11-191-10/+9
|
* Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot2020-09-193-19/+16
|
* Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot2020-08-201-1/+1
|
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-201-3/+5
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-05-201-2/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-141-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-111-5/+4
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-141-4/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-141-1/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-121-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-091-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-021-1/+1
|
* Fix deploy key testMark Lapierre2019-01-111-1/+1
| | | | | | Fetch a specific key's fingerprint instead of all fingerprints. Check for the specific key by title and expected fingerprint. This avoids the use of `all`, which can be unreliable.
* Prettify all the thingsMike Greiling2018-11-204-87/+27
|
* Use @gitlab npm namespaceClement Ho2018-11-162-2/+2
|
* Remove gitlab-ui loading icon from globalClement Ho2018-11-072-0/+6
|
* Prettify all the things (part 7)Mike Greiling2018-10-242-8/+7
|
* Resolve eslint-plugin-vue errorsMike Greiling2018-09-201-5/+5
| | | | | | The eslint-plugin-vue upgrade had some breaking changes to vue/attribute-order which needed to be resolved in order to avoid disabling the rule entirely
* Use gitlab-ui loading iconClement Ho2018-09-112-9/+3
|
* Enable no-restricted-globals in JS filesgfyoung2018-06-151-1/+1
|
* Updates eslint vue plugin versionFilipa Lacerda2018-06-114-20/+20
|
* refactor "deploy_keys" to use axiosPaul Slaughter2018-05-091-23/+10
|
* Make deploy keys table more clearly structuredLukas Eipert2018-05-077-299/+474
|
* Refactored webpack bundle tag for deploy keysproject-deploy-keys-bundle-tag-refactorConstance Okoghenun2018-02-231-2/+2
|
* Also test if the fingerprint is correctLin Jen-Shin2018-01-221-2/+2
|
* Add .qa-project-deploy-keys to locate itqa-deploy-key-factory-productLin Jen-Shin2018-01-201-0/+1
| | | | Without this, it's very hard to locate it.
* fixed conflictsPhil Hughes2018-01-171-19/+4
|
* Merge branch 'sh-migrate-can-push-to-deploy-keys-projects-10-3' into ↵Douwe Maan2018-01-161-7/+31
| | | | | | | | | | | | 'security-10-3' [10.3] Migrate `can_push` column from `keys` to `deploy_keys_project` See merge request gitlab/gitlabhq!2276 (cherry picked from commit f6ca52d31bac350a23938e0aebf717c767b4710c) 1f2bd3c0 Backport to 10.3
* [ci skip] Fix more rulesFilipa Lacerda2018-01-054-45/+46
|
* Adds `eslint-plugin-vue`, fixes linter errors and adds docsFilipa Lacerda2018-01-031-3/+3
|
* Merge branch 'master' into 38869-datetimeFilipa Lacerda2017-12-112-3/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (112 commits) small change to make less conflict with EE version Add cop for use of remove_column Resolve merge conflicts with dev.gitlab.org/master after security release add index for doc/administration/operations/ Remove RubySampler#sample_objects for performance as well Bugfix: User can't change the access level of an access requester Add spec for removing issues.assignee_id updated imports Keep track of storage check timings Remove a header level in the new 'Automatic CE->EE merge' doc Improve down step of removing issues.assignee_id column Fix specs after removing assignee_id field Remove issues.assignee_id column Resolve conflicts in app/models/user.rb Fix image view mode Do not raise when downstream pipeline is created Remove the need for destroy and add a comment in the spec Use build instead of create in importer spec Simplify normalizing of paths Remove allocation tracking code from InfluxDB sampler for performance ...
| * Fixed remove deploy key loading icon not being removed after cancelingdeploy-keys-loading-iconPhil Hughes2017-12-072-3/+11
| | | | | | | | Closes #37595
* | Export date utility functions as ES6 modulesFilipa Lacerda2017-12-071-1/+2
|/
* Flash is now a ES6 modulePhil Hughes2017-10-101-1/+1
| | | | | | | | | | | Reduced the technical debt around our JS flash function by making it a module that is imported rather than relying on the global function. The global function still exists mainly for technical debt with how some requests are being completed, but new JS should import the module directly. Also reduces some tech debt in the file by removing the need for jQuery. Instead Flash is now 100% vanilla JS.
* Change all instances of btn-sm to btn-small to keep things consistentJedidiah2017-09-191-1/+1
|
* Merge branch '3191-deploy-keys-update' into 'master'Rémy Coutable2017-06-073-13/+47
|\ | | | | | | | | | | | | Implement ability to update deploy keys Closes #3191 See merge request !10383
| * Implement ability to update deploy keysAlexander Randa2017-06-023-13/+47
| |
* | Resolve "Simplified Repository Settings page"Mike Greiling2017-06-071-1/+1
|/
* Tech debt: Creates vue component for loading iconFilipa Lacerda2017-05-102-15/+14
|
* Fixed Karma specdeploy-keys-load-asyncPhil Hughes2017-05-041-1/+1
|
* Updated webpack configPhil Hughes2017-05-041-5/+1
|
* Component specsPhil Hughes2017-05-022-6/+1
|
* Started specs [ci skip]Phil Hughes2017-05-021-1/+1
|