akkounts/app/controllers/admin/lightning_controller.rb
Râu Cao cd7b05e2ff
All checks were successful
continuous-integration/drone/push Build is passing
Add rails-settings-cached, use for initial feature flags
2023-02-17 17:07:42 +08:00

22 lines
608 B
Ruby

class Admin::LightningController < Admin::BaseController
before_action :check_feature_enabled
def index
@current_section = :lightning
@users = User.pluck(:cn, :ou, :ln_account)
@accounts = LndhubAccount.with_balances.order(balance: :desc).to_a
@ln = {}
@ln[:current_balance] = LndhubAccount.current.joins(:ledgers).sum("account_ledgers.amount")
@ln[:users_with_sats] = @accounts.length
end
def check_feature_enabled
if !Setting.lndhub_admin_enabled?
flash[:alert] = "Lightning Admin UI not enabled"
redirect_to admin_root_path and return
end
end
end