summaryrefslogtreecommitdiff
path: root/app/controllers/projects/deploy_tokens_controller.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-211-0/+2
|
* Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot2020-04-241-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-281-1/+1
|
* Enable even more frozen string in app/controllersgfyoung2018-09-251-0/+2
| | | | | | | | | | | | Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
* ensure all project repository settings panels remain open after form submissionMike Greiling2018-08-081-1/+1
|
* Handle limit for datetime attributes on MySQLMayra Cabrera2018-04-061-6/+0
| | | | | | | | | | | The TIMESTAMP data type is used for values that contain both date and time parts. TIMESTAMP has a range of '1970-01-01 00:00:01' UTC to '2038-01-19 03:14:07' UTC. A Forever lib class was included to handle future dates for PostgreSQL and MySQL, also changes were made to DeployToken to enforce Forever.date Also removes extra conditional from JwtController
* Get rid of Redis when dealing with deploy tokensKamil TrzciƄski2018-04-061-10/+0
| | | | We use controller actions to pass a newly created token and errors
* Include ProjectDeployTokensMayra Cabrera2018-04-061-1/+1
| | | | | | Also: - Changes scopes from serializer to use boolean columns - Fixes broken specs
* Addreses backend review suggestionsMayra Cabrera2018-04-061-4/+0
| | | | | | - Remove extra method for authorize_admin_project - Ensure project presence - Rename 'read_repo' to 'read_repository' to be more verbose
* Address UX reviewMayra Cabrera2018-04-061-5/+1
| | | | | | | | - Keep 'Deploy Section' open upon save, otherwise the token might get lost - When an error appears, display the error inside the form and also keep the Deploy Section open - Changue copy of revoke modal
* Create barebones for DeploytokenMayra Cabrera2018-04-061-0/+34
Includes: - Model, factories, create service and controller actions - As usual, includes specs for everything - Builds UI (copy from PAT) - Add revoke action Closes #31591