dynamic app selection on home context

This commit is contained in:
2023-06-30 19:06:46 +02:00
parent 2937de86d6
commit f68ae00098
2 changed files with 32 additions and 4 deletions

View File

@@ -68,4 +68,12 @@ class BinStore {
}
return null;
}
public function getNameByAlias(alias: String): String {
var bin = getBinByAlias(alias);
if (bin == null) {
return null;
}
return bin.name;
}
}