diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-07-16 23:06:34 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-07-18 14:44:21 +0200 |
commit | 3248c9fb56e5d5cb8980cb37effec1ee2f4f664a (patch) | |
tree | b927d7d1a1fa8b58b3591459cc585b87f74049c5 /app/models/deployment.rb | |
parent | 7d0fe1f04ed285e7e5cf825a305114b3e981c2f8 (diff) | |
download | gitlab-ce-3248c9fb56e5d5cb8980cb37effec1ee2f4f664a.tar.gz |
Rename playable_actions to manual_actions
Diffstat (limited to 'app/models/deployment.rb')
-rw-r--r-- | app/models/deployment.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/deployment.rb b/app/models/deployment.rb index 44dfb67552e..aa1f7e462d2 100644 --- a/app/models/deployment.rb +++ b/app/models/deployment.rb @@ -33,7 +33,7 @@ class Deployment < ActiveRecord::Base project.repository.keep_around(self.sha) end - def playable_actions - deployable.try(:playable_actions) + def manual_actions + deployable.try(:manual_actions) end end |