#解決したいこと
エラー文を解決したい
https://gyazo.com/bab413f6c7616f759c6cb4857ffc887f
#コード
_side.html.haml
ruby
1 2.side-bar 3 .side-bar__main 4 - current_user.categories.each do |category| 5 .first-list 6 やりたいこと 7 = link_to new_category_path(current_user) do 8 = icon('fas','plus') 9 .first-name__list-name 10 = category.name 11 .second-list 12 やるべきこと 13 = link_to new_deadline_path(current_user) do 14 = icon('fas','plus') 15 .second-list__list-name 16 1ヶ月以内
categories_controller.rb
ruby
1 2class CategoriesController < ApplicationController 3 4 def index 5 end 6 7 def new 8 @category = Category.new 9 end 10 11 def create 12 @category = Category.new(category_params) 13 if @category.save 14 redirect_to root_path, notice: 'カテゴリーを作成しました' 15 else 16 render :new 17 end 18 end 19 20 private 21 def category_params 22 params.require(:category).permit(:name) 23 end 24end 25
category.rb
ruby
1 2class Category < ApplicationRecord 3 has_many :category_tasks 4 belongs_to :user 5 validates :name, presence: true, uniqueness: true 6end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。