Skip to content

Commit 2f4a525

Browse files
committed
Merge branch 'release/1.6.7'
2 parents 5c0f2d2 + 2142d5d commit 2f4a525

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.env.example

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,5 @@ CI=true
5858

5959
# SolidQueue Configuration
6060
SOLID_QUEUE_USERNAME: <some_username>
61-
SOLID_QUEUE_PASSWORD: <some_password>
61+
SOLID_QUEUE_PASSWORD: <some_password>
62+
MISSION_CONTROL_ENABLED=true

config/routes.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ def draw(routes_name)
77
end
88

99
Rails.application.routes.draw do
10-
mount MissionControl::Jobs::Engine, at: "/jobs"
10+
if ENV["MISSION_CONTROL_ENABLED"] == "true"
11+
mount MissionControl::Jobs::Engine, at: "/jobs"
12+
end
1113

1214
namespace :admin do
1315
resources :users

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@saeloun/miru-web",
3-
"version": "1.6.5",
3+
"version": "1.6.7",
44
"dependencies": {
55
"@babel/core": "^7.21.3",
66
"@babel/plugin-proposal-private-methods": "^7.16.5",

0 commit comments

Comments
 (0)