class StoreAgent::Guest

ゲストユーザーはデフォルトの設定では何の権限も持たない

guest = StoreAgent::Guest.new
guest.workspace("ws").file("file.txt").read

Public Class Methods

new(*) click to toggle source
# File lib/store_agent/user.rb, line 103
def initialize(*)
  @identifiers = [StoreAgent.config.guest_identifier]
end