1
0

feat: rename frontend url config to public url

This commit is contained in:
kolaente
2024-02-09 14:41:55 +01:00
parent 78df83ee69
commit 119c68be9d
9 changed files with 30 additions and 30 deletions

View File

@ -156,7 +156,7 @@ func (t *Task) GetFullIdentifier() string {
}
func (t *Task) GetFrontendURL() string {
return config.ServiceFrontendurl.GetString() + "tasks/" + strconv.FormatInt(t.ID, 10)
return config.ServicePublicURL.GetString() + "tasks/" + strconv.FormatInt(t.ID, 10)
}
type taskFilterConcatinator string