前提・実現したいこと
掲示板ライクなアプリケーションを作っています。
流れとしてはユーザーが投稿ルームを作り、そこでユーザー同士自由に投稿できる機能にしたいと思っています。
発生している問題・エラーメッセージ
現在の問題としてユーザーが作った部屋は、作成者にしか見えない状況なので、他ユーザーにも見える(アクセス)ようにしたいです。
該当のソースコード
routes
1Rails.application.routes.draw do 2 devise_for :users 3 root to: "rooms#index" 4 5 resources :users, only: [:show, :edit, :update] 6 resources :rooms, only: [:index, :new, :create, :destroy] do 7 resources :messages, only: [:index, :create] 8 end 9end
DB
1class CreateRooms < ActiveRecord::Migration[6.0] 2 def change 3 create_table :rooms do |t| 4 t.string :name, null: false 5 t.references :user, foreign_key: true 6 t.timestamps 7 end 8 end 9end
model
1class Room < ApplicationRecord 2 belongs_to :user 3 has_many :messages 4 5 validates :name, presence: true 6end
controller
1class RoomsController < ApplicationController 2 def index 3 end 4 5 def new 6 @room = Room.new 7 end 8 9 def create 10 @room = Room.new(room_params) 11 if @room.save 12 redirect_to root_path 13 else 14 render :new 15 end 16 end 17 18 def destroy 19 room = Room.find(params[:id]) 20 room.destroy 21 redirect_to root_path 22 end 23 24 private 25 26 def room_params 27 params.require(:room).permit(:name).merge(user_id: current_user.id) 28 end 29end
views
1<div class="side-bar-header"> 2 <div class="header-name"> 3 <%= link_to current_user.name, user_path(current_user) %> 4 </div> 5 <div class="create-room"> 6 <%= link_to "チャットを作成する", new_room_path %> 7 </div> 8</div> 9 10<div class="rooms"> 11 <% current_user.rooms.each do |room| %> 12 <div class="room"> 13 <div class="room-name"> 14 <%= link_to room.name, room_messages_path(room) %> 15 </div> 16 </div> 17 <% end %> 18</div>
筆者の仮説
私の仮説なのですが、user_idが悪さをしているのかな?と考えていますが、問題の解決の仕方がわかりません。
機能実装のためお力添えをお願いします。
回答1件
あなたの回答
tips
プレビュー