1
有一個應用程序使用設計,我想增加自動暫停帳戶(14天試用)的可能性。我一直在尋找一些設備用戶到期的東西,但是我發現所有的東西都是這樣的:https://github.com/phatworx/devise_security_extension這對我沒有任何幫助。是否有可能在設計中自動掛起用戶?
有沒有人知道一種方法來在一定時間後自動掛起用戶帳戶?
有一個應用程序使用設計,我想增加自動暫停帳戶(14天試用)的可能性。我一直在尋找一些設備用戶到期的東西,但是我發現所有的東西都是這樣的:https://github.com/phatworx/devise_security_extension這對我沒有任何幫助。是否有可能在設計中自動掛起用戶?
有沒有人知道一種方法來在一定時間後自動掛起用戶帳戶?
您可以在before_action
class ApplicationController << ActionController::Base
before_action :check_expiration
def check_expiration
if current_user && current_user.status == 'trial'
if Date.today - current_user.created_at.to_date > 14
flash[:error] = "Your trial has expired!"
sign_out current_user
redirect_to :new_session_path
end
end
end
end
尼斯一個測試到期,謝謝! – Cojones