class Fastly

def current_user

NOTE: requires you to be fully authed - will not work with only an API key
Return a User object representing the current logged in user.
def current_user
  fail FullAuthRequired unless fully_authed?
  @current_user ||= get(User)
end