I have a rails app with grape integrated, i tried to integrate devise token auth, and i was able to sign up/sign in with the urls mentioned in the pdf.
But i do face a problem with grape i could nt use methods like user_signed_in? or authenticate_user! inside grape api, included concerns in user model or controller doesnt work here.
i have tried to integrate these methods inside the grape by calling some files like
require '........'
Is there any way to require files and call these methods inside grape api.