Skip to content

Commit

Permalink
update after pr
Browse files Browse the repository at this point in the history
  • Loading branch information
mfiebig committed Nov 26, 2024
1 parent 6a0ff65 commit b2c001d
Show file tree
Hide file tree
Showing 12 changed files with 441 additions and 74 deletions.
344 changes: 290 additions & 54 deletions concept/index.html

Large diffs are not rendered by default.

47 changes: 42 additions & 5 deletions fd_openapi.html

Large diffs are not rendered by default.

Binary file added images/diagrams/channel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/diagrams/entites_push_gateway.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/diagrams/entities_fachdienst.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/diagrams/entities_mobile_device.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/diagrams/entities_push_provider.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/diagrams/registration.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/diagrams/send_push_preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
73 changes: 73 additions & 0 deletions images/secret_channel.drawio.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 10 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,18 @@
}

window.addEventListener('load', function() {
var hash = "concept/index.html";
if (window.location.hash && window.location.hash.length > 2) {
hash = window.location.hash.substring(1).replace('%23', '#');
var hash = window.location.hash.substring(1).replace('%23', '#');
document.getElementById('content').src = hash;
var links = document.querySelectorAll('#menu a');
links.forEach(link => {
if (hash.startsWith(link.getAttribute('href'))) {
link.classList.add('active');
} else {
link.classList.remove('active');
}
});
}
document.getElementById('content').src = hash;
var links = document.querySelectorAll('#menu a');
links.forEach(link => {
if (hash.startsWith(link.getAttribute('href'))) {
link.classList.add('active');
} else {
link.classList.remove('active');
}
});
});

document.getElementById('content').addEventListener('load', function() {
Expand Down
30 changes: 26 additions & 4 deletions push_gateway_openapi.html

Large diffs are not rendered by default.

0 comments on commit b2c001d

Please sign in to comment.