method
current_role
v6.0.0 -
Show latest stable
- Class:
ActiveRecord::ConnectionHandling
current_role()public
Returns the symbol representing the current connected role.
ActiveRecord::Base.connected_to(role: :writing) do ActiveRecord::Base.current_role #=> :writing end ActiveRecord::Base.connected_to(role: :reading) do ActiveRecord::Base.current_role #=> :reading end