module Persistiq::Client::User
Public Instance Methods
list_users()
click to toggle source
# File lib/persistiq/resources/user.rb, line 5 def list_users get(user_path) end
Private Instance Methods
user_path(id=nil)
click to toggle source
# File lib/persistiq/resources/user.rb, line 11 def user_path(id=nil) id ? "users/#{id}/" : "user" end