Skip to content

AnatoliiD/request_registry

Repository files navigation

RequestRegistry

1. Create registry

class AppRegistry
  extend RequestRegistry.new(:user, :account)
end

2. Use it anywhere

Set it in controller

class ApplicationController < ActionController::Base
  before_action :provide_registry_information

  private

  def provide_registry_information
    AppRegistry.user = current_user
    AppRegistry.account = 'my awesome account'
  end
end

And get it in model

class Post < ActionController::Base
  belongs_to :author
  before_save :set_author

  private

  def set_author
    self.author = AppRegistry.user.presence
  end
end

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages