liquid_feedback_frontend
annotate env/lf4rcs/get_config.lua @ 1858:3d1f0464a3ea
Handle missing ldap.member.allowed function
| author | bsw |
|---|---|
| date | Tue Sep 20 17:35:29 2022 +0200 (2022-09-20) |
| parents | 30523f31b186 |
| children |
| rev | line source |
|---|---|
| bsw@1219 | 1 function lf4rcs.get_config(unit) |
| bsw@1219 | 2 if not unit.external_reference then |
| bsw@1219 | 3 error("Unit is not configured for lf4rcs") |
| bsw@1219 | 4 end |
| bsw@1219 | 5 local repository, path, url = string.match(unit.external_reference, "([^ ]+) ([^ ]+) (.*)") |
| bsw@1219 | 6 return repository, path, url |
| bsw@1219 | 7 end |
| bsw@1219 | 8 |