Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMayra Cabrera <mcabrera@gitlab.com>2018-04-06 06:02:13 +0300
committerMayra Cabrera <mcabrera@gitlab.com>2018-04-07 05:20:17 +0300
commitc4f56a88029c1fe73bf6efb062b5f77a65282fed (patch)
tree890a869e8ce06a5438b38c8e9dca9529362cc2f4 /app/models/project_deploy_token.rb
parenta475411f4380ef4d0260940206e2553da3b2f3ee (diff)
Increase test suite around deploy tokens behavior
Also, fixes broken specs
Diffstat (limited to 'app/models/project_deploy_token.rb')
-rw-r--r--app/models/project_deploy_token.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/app/models/project_deploy_token.rb b/app/models/project_deploy_token.rb
index 2831b01e378..ab4482f0c0b 100644
--- a/app/models/project_deploy_token.rb
+++ b/app/models/project_deploy_token.rb
@@ -5,10 +5,4 @@ class ProjectDeployToken < ActiveRecord::Base
validates :deploy_token, presence: true
validates :project, presence: true
validates :deploy_token_id, uniqueness: { scope: [:project_id] }
-
- accepts_nested_attributes_for :deploy_token
-
- def redis_shared_state_key(user_id)
- "gitlab:deploy_token:#{project_id}:#{user_id}"
- end
end