开发者

Ruby on rails: devise :, how can i allow posts/index and posts/show action to all but other actions will be denied

开发者 https://www.devze.com 2023-03-22 18:05 出处:网络
Howw can i allow posts/index a开发者_高级运维nd posts/show action to all but other actions will be denied ?in your PostsController

Howw can i allow posts/index a开发者_高级运维nd posts/show action to all but other actions will be denied ?


in your PostsController

before_filter :authenticate_user!, :except => [:index, :show]
0

精彩评论

暂无评论...
验证码 换一张
取 消