Firstly, thank you for creating and maintaining this library!
I've been trying to incorporate this library into my application, but I'm running into problems with model associations. I see the examples for attributes directly tied to the user model but I can't seem to find anything on associations. For example, if a user has a one-to-one association with another model:
class User > ApplicationRecord
has_one :important_dates
end
create_table "important_dates" do |t|
t.datetime "birthday"
t.datetime "anniversary"
end
is it currently possible with this library to set birthday and anniversary through SCIM? Thank you in advance!
Firstly, thank you for creating and maintaining this library!
I've been trying to incorporate this library into my application, but I'm running into problems with model associations. I see the examples for attributes directly tied to the user model but I can't seem to find anything on associations. For example, if a user has a one-to-one association with another model:
is it currently possible with this library to set
birthdayandanniversarythrough SCIM? Thank you in advance!