Jakub
Jakub
Yes, I tried both, as you can see from my issue description. It appears seeding the database is necessary, but it is not doable multiple times, so I have to...
Any news on this?
I actually have it connected via `ipp://` over LAN. Not sure how to show that. If you need it to add it properly I guess I can try getting a...
Hmmm, doesn't seem right: ``` $ sudo lpinfo --include-schemes ipp -l -v Device: uri = ipp class = network info = Internet Printing Protocol (ipp) make-and-model = Unknown device-id =...
This is weird. I connected it via USB and it doesn't work. It just printed a black line at the top of the page. Here's the output of `sudo lpinfo...
Kinda busy during week. I'll try fiddling with it during the weekend.
I can see that `email_alert` field: https://github.com/arachnys/cabot/blob/4e4ca0a8b6d08b40007e84a9e61160873000f6f5/cabot/cabotapp/models/base.py#L146 Is part of `CheckGroupMixin` class: https://github.com/arachnys/cabot/blob/4e4ca0a8b6d08b40007e84a9e61160873000f6f5/cabot/cabotapp/models/base.py#L94 Which is inherited by the `Service` class: https://github.com/arachnys/cabot/blob/4e4ca0a8b6d08b40007e84a9e61160873000f6f5/cabot/cabotapp/models/base.py#L285 Which contains the `is_public` attribute: https://github.com/arachnys/cabot/blob/4e4ca0a8b6d08b40007e84a9e61160873000f6f5/cabot/cabotapp/models/base.py#L316-L320 So I'm not...
The field `overall_status` that is included in the `services` API endpoint: https://github.com/arachnys/cabot/blob/b18b1a0c9f28e7162aacff797ea477b7234c220f/cabot/rest_urls.py#L50-L57 Seems to come from `CheckGroupMixin`: https://github.com/arachnys/cabot/blob/4e4ca0a8b6d08b40007e84a9e61160873000f6f5/cabot/cabotapp/models/base.py#L153 And that one works fine.
Oh, I see, there's a separate `alerts` field that is a list of types of alerts enabled: https://github.com/arachnys/cabot/blob/4e4ca0a8b6d08b40007e84a9e61160873000f6f5/cabot/cabotapp/models/base.py#L140-L144 That's a bit confusing, but I figured that out based on the...
It appears that `1` is the ID of the email alert type: ``` { "name": "Websites", "users_to_notify": [ 2 ], "alerts_enabled": true, "status_checks": [ 31, ], "alerts": [ 1 ],...