You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While we want to still allow the above example to work, it would be good if we could set the token store with a symbol and autoload it if it's one of the default token stores included with the gem. E.g.:
require"fmrest"FmRest.token_store=:redis# this would automatically require fmrest/token_store/redis.rb and set the proper class
The text was updated successfully, but these errors were encountered:
Currently you need to manually require the token store class and assign it to
FmRest.token_store=
as the Ruby class object.E.g.:
While we want to still allow the above example to work, it would be good if we could set the token store with a symbol and autoload it if it's one of the default token stores included with the gem. E.g.:
The text was updated successfully, but these errors were encountered: