Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/firstinmi/fim-queueing-admin
An administrative interface for clients running the fim-queueing web app and AV Assistant
https://github.com/firstinmi/fim-queueing-admin
Last synced: about 2 months ago
JSON representation
An administrative interface for clients running the fim-queueing web app and AV Assistant
- Host: GitHub
- URL: https://github.com/firstinmi/fim-queueing-admin
- Owner: FIRSTinMI
- Created: 2023-02-04T20:41:40.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T01:42:03.000Z (4 months ago)
- Last Synced: 2024-09-17T05:32:21.334Z (4 months ago)
- Language: C#
- Homepage:
- Size: 999 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# fim-queueing-admin
Detailed docs to be created later
## Running Locally
Run the following command with the `gcloud` CLI so the app picks up credentials:
```bash
gcloud auth application-default login
```## SignalR Messages
### DisplayHub
The DisplayHub is for interfacing with instances of `fim-queueing`.
Server-to-Client
| Method | Param 1 |
|--------------|-----------------|
| SendRefresh | n/a |
| Identify | n/a |
| SendNewRoute | `string`: Route |Client-to-Server
| Method | Param 1 |
|-------------|----------------------------------------------------------------------------------------------|
| UpdateInfo | `{eventKey: string, eventCode: string, route: string, installationId: string}`: Display Info |
| UpdateRoute | `string`: Route |### AssistantHub
TODO