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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user