I have installed Active_Admin gem in my app but I have a filter on my application so the only page you can get to is the log in page. When I try to access the active_admin page it routes me to my log in page of my application, not my admin log in. When I log into my application I can then access the active_admin log in page. My question is where I would put my skip_before_filter statement in this gem? Thank You.
Related Questions in RUBY-ON-RAILS
- How to display legend box in tooltip text for amCharts 5 in Rails application?
- how to integrate cashfree payment gateway in ruby on rails project
- RSpec Capybara throwing Selenium error when trying to click a button with browser confirm
- rails minitest not picking up fixture properly, instance variable not percolating
- Duplicate GET requests - Rails & Heroku
- How to stub out current_user in JWT model for Rspec?
- NameError in Home#index
- Verifying Google Identity OAuth2 token with Ruby
- Error WebMock::NetConnectNotAllowedError in testing with stub using minitest in rails (using Faraday)
- why is mission_control-jobs erroring with load path error?
- Rescuing validation errors from a polymorphic association
- New error on random number assigned to local variable , Rails
- How to fix error in model with gem lockbox
- Images uploaded via Active Storage not displaying in Active Admin or on certain devices
- controller test_methods generating two errors intermittently
Related Questions in RUBY-ON-RAILS-3
- is there a way to write this clean?
- HTML to pdf conversion using wickedpdf with page count
- Rails rspec feature itegration testing for basic auhentication
- ImageKit works fine on local but doesn't work on heroku why?
- SSL Configuration Issue: Website Redirects Too Many Times and CSRF Token Mismatch
- How to fix permission error while install bundle for rails project on ubuntu?
- Active Admin filters not displaying on screen but present in the html DOM
- Why is the page title not not changing in a turbo-ios app
- Resolving 'net::ERR_BLOCKED_BY_CLIENT' Error After Upgrading Ruby to 3.2.2 and Rails to 7 with jsbundling Gem
- Cant install Mysql2 Gem::Ext::BuildError: ERROR: Failed to build gem native extension
- Filtering Users with Associated Records by Specific Date in Rails
- How to handle the params for accepts_nested_attributes_for for has_many association containing a lot of fields on both associated table
- Issue when Rounding Decimal values
- Map an activerecord array to avoid that two item with the same attribute are in a sequential position
- Devise Registration Ruby on Rails - Migration Error: Duplicate column name
Related Questions in ACTIVERECORD
- Rails 5 does not reference a modified ActiveRecord-jdbc-adapter
- Showing currently selected field in a separate textbox in Access
- Rails Active Record Statement Invalid Undefined column
- RSpec test failing because of file field
- Use update_all for store in Rails
- Ruby on Rails Active Storage (bug?)
- Rails before_update not triggering on update but save works
- Rails/MySQL: better to use JSON column or serialized text for non-JSON use?
- ActiveRecord query for count of association using a join table
- SQL JOIN to SELECT - is there an ActiveRecord way to do this?
- How to prevent ActiveRecord from making an associated record in a callback before it is saved?
- Association within the same model?
- Drop index concurrently when testing Rails migration in Rspec
- How to add validation only to an associated table in active record
- Decrypting Fields Encrypted by Rails Active Record Encryptor in Plain Ruby
Related Questions in ACTIVEADMIN
- Images uploaded via Active Storage not displaying in Active Admin or on certain devices
- ActiveAdmin: How to remove `[ ] (Toggle Selection)` for grid index renderer?
- Creating an activeadmin filter on a scope in ransackable_scopes
- ActiveAdmin obscuring error messages in forms
- How to do a same day date_range filter in ActiveAdmin
- Ransack needs AdminUser attributes explicitly allowlisted issue in Rails 7 with active admin
- SassC::SyntaxError in ActiveAdmin::Devise::Sessions#new
- ActiveAdmin in rails engine give me that error : uninitialized constant MyEngine::Admin
- Rails ActiveAdmin batch_action with form causing assets:precompile error
- DropZone implementation with multiple file types + Carrierwave
- Rails connection switching issue
- Active Admin Comments: "Comment wasn't saved, text was empty"
- Active Admin filters not displaying on screen but present in the html DOM
- Undefined method error for an instance of Ransack::Search
- Unable to load ActiveAdmin models with Ransack 4
Related Questions in BEFORE-FILTER
- Rails controller tests: "Filter chain halted" never appears
- Before filter, calling a method with param throws syntax error. Ruby
- filter methods in before_action after of another before_action
- rails before_action not in extended classes
- How to skip a before_filter in dev environment
- How to skip before filter in model with ruby on rails 5.2?
- How to restrict saving of data in db for user when the admin deactivated it in cakephp3.x?
- render/head in before_action does not stop executing the rest of the action
- CakePhp Can“t Redirect beforeFilter
- Using before_filter for accessing two model authentication
- How to use rails before_action conditional for only some actions?
- How to filter an object in rails so that only the user that created it or an admin can destroy that object?
- Restricting authorization to individual records instead of whole controller action in Rails
- How to use require_relative with an rspec test?
- Ruby on Rails - before_action with condition only when one attribute has been changed
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You would put the skip filter in your Application Controller. This could be in a lib/my_active_admin.rb. Then require 'my_active_admin' in applications_controller before the ApplicationControllers definition.