class Bitbuckit::User

Public Class Methods

path(user) click to toggle source
# File lib/bitbuckit/user.rb, line 3
def self.path(user)
  case user
  when String
    "users/#{user}"
  else
    "user"
  end
end