Merge remote-tracking branch 'origin/main' into feature/206

This commit is contained in:
2026-03-08 16:30:56 +09:00
13 changed files with 138 additions and 51 deletions
@@ -1,4 +1,3 @@
# spec/requests/tag_children_spec.rb
require "rails_helper"
RSpec.describe "TagChildren", type: :request do
+2 -2
View File
@@ -106,8 +106,8 @@ RSpec.describe 'Tags API', type: :request do
end
before do
allow(member_user).to receive(:member?).and_return(true)
allow(non_member_user).to receive(:member?).and_return(false)
allow(member_user).to receive(:gte_member?).and_return(true)
allow(non_member_user).to receive(:gte_member?).and_return(false)
end
describe "PATCH /tags/:id" do