Method
resolveQuestion
(
sid: string,
qid: string,
body: QuestionResponse,
)
Source from the content-addressed store, hash-verified
| 348 | return this.http.listPendingApprovals(sid); |
| 349 | } |
| 350 | resolveQuestion( |
| 351 | sid: string, |
| 352 | qid: string, |
| 353 | body: QuestionResponse, |
| 354 | ): Promise<QuestionResolveResult> { |
| 355 | return this.http.resolveQuestion(sid, qid, body); |
| 356 | } |
| 357 | listPendingQuestions(sid: string): Promise<ListPendingQuestionsResponse> { |
| 358 | return this.http.listPendingQuestions(sid); |
| 359 | } |
Tested by
no test coverage detected