You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
* Request allowing message re-signing. To fulfill this action, a key trial must be passed.
112
-
* @returnsReturns a key trial
117
+
* @returns a key trial
113
118
* @paramallowedResigningKeys List of PEM encoded `SubjectPublicKeyInfo`s. Only key pairs mentioned in this list are allowed to re-sign messages after the key trial has been passed.
* Commit messages that have been re-signed to the server.
126
131
* @parammessages Messages. The distinct format of messages is up to the specific p2 extension to define.
127
-
* @returns `200` On success; `400` if re-signed messages are improperly formatted; `403` if messages have been modified where the original keys have not passed the key trial, if a key trial has not been passed at all or if the messages have been signed with keys that were not on the `allowedResigningKeys` list.
132
+
* @returns
133
+
* - `200` On success
134
+
* - `400` if re-signed messages are improperly formatted
135
+
* - `403` if messages have been modified where the original keys have not passed the key
136
+
* trial, if a key trial has not been passed at all or if the messages have been signed
137
+
* with keys that were not on the `allowedResigningKeys` list.
* allow changes which concern information tied to these exact keys.
161
171
*
162
172
* @parambody Completed key trials.
163
-
* @returns Returns `200` if the key trials were processed and deemed to be valid. Returns `202`, if the server needs additional time to process the key trials. 400 is received if one or more completed key trials were faulty. Contains faulty key trials in the response body.
173
+
* @returns
174
+
* - `200` if the key trials were processed and deemed to be valid
175
+
* - `202`, if the server needs additional time to process the key trials
176
+
* - `400`, if one or more completed key trials were faulty. Contains faulty key trials in the response body.
@doc("Returns `200` if the key trials were processed and deemed to be valid. Returns `202`, if the server needs additional time to process the key trials.")
@@ -183,7 +196,10 @@ namespace Migration {
183
196
*
184
197
* Only key trials which have at least one completion, and - more importantly - where the
185
198
* `expiration` UNIX time stamp has passed, can be fetched.
186
-
* @returns `204`: No keytrials found for specified actor; `404`: Specified actor not known; `200`: Completed key trials of requested actor
199
+
* @returns
200
+
* - `204`: No keytrials found for specified actor
201
+
* - `404`: Specified actor not known
202
+
* - `200`: Completed key trials of requested actor
0 commit comments