refactor: rename startWecker/stopWecker mutations to startRinging/stopRinging

'Wecker' is a Swiss-German term with no meaning in English.
Renaming to startRinging/stopRinging for better clarity.
This commit is contained in:
Markus Graf
2026-05-19 15:28:44 +02:00
parent df7bec1054
commit 41d8ffc404
3 changed files with 25 additions and 26 deletions
+2 -2
View File
@@ -102,7 +102,7 @@ mutation {
**Start the alarm immediately:**
```graphql
mutation {
startWecker
startRinging
}
```
Returns `true` if the alarm started, `false` if it was already ringing (ignored).
@@ -110,7 +110,7 @@ Returns `true` if the alarm started, `false` if it was already ringing (ignored)
**Stop the alarm immediately:**
```graphql
mutation {
stopWecker
stopRinging
}
```
Returns `true` if the alarm was stopped, `false` if it wasn't ringing.