If you're talking about default attributes for your user, you could probably override the `build_resource` method, call super and do whatever you want with it, something like:
def build_resource(*args)
resource = super
resource.company_id = 1 # for instance
resource
end