This commit is contained in:
+3
-3
@@ -78,7 +78,7 @@ custom:
|
||||
'integration.request.header.cache-control': "'public, max-age=86400, immutable'"
|
||||
|
||||
- s3:
|
||||
path: /projects/{pid}
|
||||
path: /questlog/{pid}
|
||||
method: get
|
||||
action: GetObject
|
||||
bucket: ${self:custom.webuiBucket}
|
||||
@@ -89,7 +89,7 @@ custom:
|
||||
|
||||
|
||||
- s3:
|
||||
path: /projects/{gid}/{pid}
|
||||
path: /questlog/{gid}/{pid}
|
||||
method: get
|
||||
action: GetObject
|
||||
bucket: ${self:custom.webuiBucket}
|
||||
@@ -148,4 +148,4 @@ custom:
|
||||
createRoute53Record: true
|
||||
endpointType: 'regional'
|
||||
hostedZoneId: ${env:HOSTED_ZONE_ID}
|
||||
autoDomain: true
|
||||
autoDomain: true
|
||||
|
||||
@@ -6,11 +6,18 @@
|
||||
import QuestLog from "../components/QuestLog.svelte";
|
||||
import RefreshSelection from "../components/RefreshSelection.svelte";
|
||||
import projectGroupStore from "../stores/projectGroup";
|
||||
import projectStore from "../stores/project";
|
||||
import { sortProjects } from "../utils/sorters";
|
||||
|
||||
export let groupId = "";
|
||||
export let projectId = "";
|
||||
|
||||
$: {
|
||||
if ($projectStore.stale && !$projectStore.loading) {
|
||||
projectStore.load();
|
||||
}
|
||||
}
|
||||
|
||||
$: {
|
||||
if ($projectGroupStore.stale && !$projectGroupStore.loading) {
|
||||
projectGroupStore.load();
|
||||
@@ -53,4 +60,4 @@
|
||||
margin-top: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user