We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c234b92 commit cb5688eCopy full SHA for cb5688e
2 files changed
app/models/runtime/route.rb
@@ -195,7 +195,7 @@ def self.user_visibility_filter(user)
195
end
196
197
def app_spaces_no_match?(app)
198
- app.space != space && shared_spaces.exclude?(app.space)
+ app.space != space && shared_spaces.exclude?(app.space)
199
200
201
delegate :in_suspended_org?, to: :space
spec/unit/models/runtime/route_spec.rb
@@ -1574,7 +1574,7 @@ def assert_invalid_path(path)
1574
describe 'app spaces and route shared spaces' do
1575
let!(:domain) { SharedDomain.make }
1576
1577
- context 'when app and route space not shared' do
+ context 'when app and route space not shared' do
1578
let!(:app) { AppModel.make }
1579
let!(:route) { Route.make(host: 'potato', domain: domain, path: '/some-path') }
1580
0 commit comments