# deviseを使った時に、ログイン中のユーザー情報を取得する方法
使用するコントローラ内にて、
before_action :authenticate_user!
とすると、current_userでユーザー情報を取得できます。
ログイン中のユーザーIDであれば、以下のようにすれば取得可能です。
XXX_controller.rb
class XXXController < ApplicationController
before_action :authenticate_user!
def index
end
def new
@user = current_user.id
end
end
#参考
https://github.com/plataformatec/devise#controller-filters-and-helpers
時間のあるときに一度しっかり読んだほうが良いと感じました。