1.13.2 local compose (#36)

* stack config files_on_host

* refresh stack cache not blocked when using files_on_host

* add remote errors status

* improve info tab

* store the full path in ComposeContents
This commit is contained in:
Maxwell Becker
2024-08-18 03:04:47 -04:00
committed by GitHub
parent 418f359492
commit 43593162b0
20 changed files with 569 additions and 164 deletions

View File

@@ -207,3 +207,17 @@ export const sync_no_changes = (sync: Types.ResourceSync) => {
!pending.data.user_group_updates
);
};
export const is_service_user = (user_id: string) => {
return (
user_id === "System" ||
user_id === "Procedure" ||
user_id === "Github" ||
user_id === "Git Webhook" ||
user_id === "Auto Redeploy" ||
user_id === "Resource Sync" ||
user_id === "Stack Wizard" ||
user_id === "Build Manager" ||
user_id === "Repo Manager"
);
};