class Gleis::CLI::Sharing
Sharing-related CLI
commands
Public Instance Methods
add(email, role)
click to toggle source
# File lib/gleis/cli/sharing.rb, line 8 def add(email, role) Gleis::Sharing.add(options[:app], email, role) end
list()
click to toggle source
# File lib/gleis/cli/sharing.rb, line 13 def list Gleis::Sharing.list(options[:app]) end
remove(email)
click to toggle source
# File lib/gleis/cli/sharing.rb, line 18 def remove(email) Gleis::Sharing.remove(options[:app], email) end