spacemanspiff2007
spacemanspiff2007
@kaikreuzer : If you want to put the token in the header, then it's the equivalent of using basic auth because it just does that. If you want to pass...
> openHAB should provide a way for the REST API to delegate access ( in this case, the Admin access) to an app outside of openHAB, such as HABApp. Whether...
> I was looking for the problem. How do I report sensor values in a specific range on every change and outside of the specific range only with a heard...
I'm afraid for me "clamp" obfuscates the meaning even more 🙈 A more readable substructure could be: ```yaml filters: - limit_value: min: 10 max: 100 ``` But I'd still prefer...
> Well introducing a breaking change here won't cause much damage. That's right. Since the current min/max expects at least one of the sub keys ``window_size``, ``send_every`` or ``send_first_at`` it...
@long2ice I have a mistake in the test case ```python self.assertEqual(await query.all(), [team_2]) ``` should be ```python self.assertEqual(await query.all(), [event_2]) ``` but all the tests are green. Is the testcase...
I can't run the test locally since I am on a windows machine and the instructions in the readme won't work. But here I start the query: ```python query =...
> Try merge develop first I'm sorry I don't understand. Should I merge the PR into the Tortoise branch "develop"? Should I merge the Tortoise branch "develop" into my branch...
Like this?
@long2ice After pulling the latest develop changes locally I could run the tests locally, too. That helped a lot. Thank you! The test now fails as expected since the query...