File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ RUN apt-get update && apt-get install cron -y \
74
74
# Install composer packages & cache this layer
75
75
RUN composer install --no-interaction --no-dev --optimize-autoloader --apcu-autoloader --no-progress --ignore-platform-reqs --ignore-platform-req=php
76
76
77
- RUN php artisan scribe:generate
77
+ RUN php artisan scribe:generate #TODO: find a better way to generate these so we can include auth ones too
78
78
79
79
RUN php artisan route:cache \
80
80
&& php artisan optimize \
Original file line number Diff line number Diff line change 48
48
'threads/* ' ,
49
49
'forums/* ' ,
50
50
'games/* ' ,
51
- 'users/* ' ,
51
+ // 'users/*', causes issues "No application encryption key has been specified."
52
52
'roles/* ' ,
53
53
'game-roles/* ' ,
54
54
'instructs-templates/* ' ,
73
73
// Exclude these routes even if they matched the rules above.
74
74
'exclude ' => [
75
75
// 'GET /health', 'admin.*'
76
+ 'GET games/{game}/users/{user} ' ,
77
+ 'GET games/{game}/users/{user}/* ' ,
78
+ 'PATCH games/{game}/users/{user}/roles ' ,
76
79
],
77
80
],
78
81
],
You can’t perform that action at this time.
0 commit comments