class DTK::Client::Operation::Account::Chmod

Public Class Methods

execute(args = Args.new) click to toggle source
# File lib/client/operation/account/chmod.rb, line 21
def self.execute(args = Args.new)
  wrap_operation(args) do |args|
    DtkNetworkClient::Chmod.run(args.required(:namespace), args.required(:permissions))
    nil
  end
end