module Trell::Client::Organizations
Public Instance Methods
create_organization(name, options = {})
click to toggle source
# File lib/trell/client/organizations.rb, line 4 def create_organization(name, options = {}) post "organizations/#{name}", options end
Also aliased as: create_org
delete_organization(name, options = {})
click to toggle source
# File lib/trell/client/organizations.rb, line 19 def delete_organization(name, options = {}) delete "organizations/#{name}", options end
Also aliased as: delete_org
organization(name, options = {})
click to toggle source
# File lib/trell/client/organizations.rb, line 9 def organization(name, options = {}) get "organizations/#{name}", options end
Also aliased as: org
update_organization(name, options = {})
click to toggle source
# File lib/trell/client/organizations.rb, line 14 def update_organization(name, options = {}) put "organizations/#{name}", options end
Also aliased as: update_org