fixed configure call within gitolite
This commit is contained in:
parent
5d88cdd9b8
commit
d6b2b4f069
1 changed files with 5 additions and 5 deletions
|
@ -8,21 +8,21 @@ module Gitlab
|
||||||
class AccessDenied < StandardError; end
|
class AccessDenied < StandardError; end
|
||||||
|
|
||||||
def set_key key_id, key_content, projects
|
def set_key key_id, key_content, projects
|
||||||
self.configure do |c|
|
configure do |c|
|
||||||
c.update_keys(key_id, key_content)
|
c.update_keys(key_id, key_content)
|
||||||
c.update_project(project.path, projects)
|
c.update_project(project.path, projects)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def remove_key key_id, projects
|
def remove_key key_id, projects
|
||||||
self.configure do |c|
|
configure do |c|
|
||||||
c.delete_key(key_id)
|
c.delete_key(key_id)
|
||||||
c.update_project(project.path, projects)
|
c.update_project(project.path, projects)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def update_repository project
|
def update_repository project
|
||||||
self.configure do |c|
|
configure do |c|
|
||||||
c.update_project(project.path, project)
|
c.update_project(project.path, project)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -30,7 +30,7 @@ module Gitlab
|
||||||
alias_method :create_repository, :update_repository
|
alias_method :create_repository, :update_repository
|
||||||
|
|
||||||
def remove_repository project
|
def remove_repository project
|
||||||
self.configure do |c|
|
configure do |c|
|
||||||
c.destroy_project(project)
|
c.destroy_project(project)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -45,7 +45,7 @@ module Gitlab
|
||||||
end
|
end
|
||||||
|
|
||||||
def enable_automerge
|
def enable_automerge
|
||||||
self.configure do |git|
|
configure do |git|
|
||||||
git.admin_all_repo
|
git.admin_all_repo
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue