debian-mirror-gitlab/lib/gitlab/bitbucket_import/key_deleter.rb

24 lines
504 B
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
module Gitlab
module BitbucketImport
class KeyDeleter
attr_reader :project, :current_user, :client
def initialize(project)
@project = project
@current_user = project.creator
2016-06-02 11:05:42 +05:30
@client = Client.from_project(@project)
2015-04-26 12:48:37 +05:30
end
def execute
return false unless BitbucketImport.public_key.present?
2015-09-25 12:07:36 +05:30
2015-04-26 12:48:37 +05:30
client.delete_deploy_key(project.import_source, BitbucketImport.public_key)
true
rescue
false
end
end
end
end