Move Assignments under Bubble

Since that what we are assigning
This commit is contained in:
David Heinemeier Hansson
2025-04-05 15:51:53 +02:00
parent e69c1bd0a1
commit b4c0fec7a6
3 changed files with 3 additions and 3 deletions
@@ -1,4 +1,4 @@
class AssignmentsController < ApplicationController
class Bubbles::AssignmentsController < ApplicationController
include BubbleScoped
def new
+1 -1
View File
@@ -59,9 +59,9 @@ Rails.application.routes.draw do
resource :recover
resources :stagings
resource :watch
resources :assignments
end
resources :assignments
resources :taggings
end
end
@@ -1,6 +1,6 @@
require "test_helper"
class AssignmentsControllerTest < ActionDispatch::IntegrationTest
class Bubbles::AssignmentsControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in_as :kevin
end