-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathsnippets.txt
72 lines (51 loc) · 1.41 KB
/
snippets.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
private TriviaDbContext context;
private IQuestionsService questionsService;
private IAnswersService answersService;
public TriviaController(TriviaDbContext context, IQuestionsService questionsService, IAnswersService answersService)
{
this.context = context;
this.questionsService = questionsService;
this.answersService = answersService;
}
protected override void Dispose(bool disposing)
{
if (disposing)
{
context.Dispose();
}
base.Dispose(disposing);
}
------------------------
using GeekQuiz.Models;
using GeekQuiz.Services;
-----------------
[Produces("application/json")]
-----------------
[Authorize]
-----------------
// GET: api/Trivia
[HttpGet]
public async Task<IActionResult> Get()
{
var userId = User.Identity.Name;
TriviaQuestion nextQuestion =
await this.questionsService.NextQuestionAsync(userId);
if (nextQuestion == null)
{
return HttpNotFound();
}
return Ok(nextQuestion);
}
------------------
// PUT: api/Trivia
[HttpPost]
public async Task<IActionResult> Post([FromBody] TriviaAnswer answer)
{
if (!ModelState.IsValid)
{
return HttpBadRequest(ModelState);
}
answer.UserId = User.Identity.Name;
var isCorrect = await this.answersService.StoreAsync(answer);
return this.CreatedAtAction("Get", new {}, isCorrect);
}