feat: add support for icon/description of services
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
This commit is contained in:
@@ -33,6 +33,8 @@ in
|
|||||||
name = containerName;
|
name = containerName;
|
||||||
slug = containerName;
|
slug = containerName;
|
||||||
protocol_provider = "\${resource.authentik_provider_proxy.${containerName}.id}";
|
protocol_provider = "\${resource.authentik_provider_proxy.${containerName}.id}";
|
||||||
|
meta_description = def.description;
|
||||||
|
meta_icon = def.icon;
|
||||||
}
|
}
|
||||||
) cfg
|
) cfg
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -169,6 +169,16 @@ in
|
|||||||
description = "Should be accessed through the auth middleware";
|
description = "Should be accessed through the auth middleware";
|
||||||
default = true;
|
default = true;
|
||||||
};
|
};
|
||||||
|
description = mkOption {
|
||||||
|
type = nullOr str;
|
||||||
|
description = "Possible description for the service";
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
|
icon = mkOption {
|
||||||
|
type = nullOr str;
|
||||||
|
description = "URL for a logo for the service";
|
||||||
|
default = null;
|
||||||
|
};
|
||||||
otherDomains = mkOption {
|
otherDomains = mkOption {
|
||||||
type = listOf (submodule {
|
type = listOf (submodule {
|
||||||
options = {
|
options = {
|
||||||
|
|||||||
Reference in New Issue
Block a user