2025-10-23 23:16:11 +02:00
|
|
|
/*
|
|
|
|
|
This file is part of »dali«.
|
|
|
|
|
|
|
|
|
|
Copyright 2025 'kcf' <fenris@folksprak.org>
|
|
|
|
|
|
|
|
|
|
»dali« is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
»dali« is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
along with »dali«. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2025-09-25 17:54:20 +02:00
|
|
|
namespace _dali.pages
|
2024-09-26 16:47:01 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*/
|
|
|
|
|
lib_plankton.zoo_page.register(
|
|
|
|
|
"oidc_finish",
|
|
|
|
|
async (parameters, target_element) => {
|
2024-09-30 13:28:42 +02:00
|
|
|
target_element.innerHTML = "";
|
2025-10-17 00:43:10 +02:00
|
|
|
await _dali.oidc_finish(parameters["session_key"]);
|
2024-09-26 16:47:01 +02:00
|
|
|
lib_plankton.zoo_page.set(
|
|
|
|
|
{
|
2024-10-01 22:00:06 +02:00
|
|
|
"name": "overview",
|
2024-09-26 16:47:01 +02:00
|
|
|
"parameters": {}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
return Promise.resolve<void>(undefined);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
}
|