How to remove ActiveAdmin link in application?

Link displayed as "powered by ActiveAdmin" on each page of the application using this ActiveAdmin stone can be removed? If so, how? Is there any legality associated with the link?

+4
source share
2 answers

You can provide your custom footer:

ActiveAdmin.setup do |config|
  config.view_factory.footer = MyFooter
end
class MyFooter < ActiveAdmin::Component
  def build
    super(id: "footer")
    para "Copyright #{Date.today.year} Your Company"
  end
end

Or you can provide an alternative translation:

en:
  active_admin:
    powered_by: "Your custom text"
+19
source

NB @seanlinsley solution

Define class MyFooterin config / initializers / active_admin.rb above ActiveAdmin.setup do.

0
source

All Articles