Public user profiles? Ruby on Rails + Devise

后端 未结 3 1924
悲&欢浪女
悲&欢浪女 2021-02-06 19:40

How to make public user profiles? I use Devise and only have /user/. User can see only his profile, I want to make /user/user_id.

user_id - public user profile.

3条回答
  •  遥遥无期
    2021-02-06 20:02

    You should create a route on config/routes.rb file like below. And then implement your controller method and view.

      match 'show/:id' => 'user#show'
    

提交回复
热议问题