Notes/Controllers/NoteController.cs
2024-05-07 21:43:09 -04:00

36 lines
859 B
C#

using BinaryDad.Notes.Models;
using BinaryDad.Notes.Services;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace BinaryDad.Notes.Controllers;
[Authorize]
public class NoteController : Controller
{
private readonly INoteService noteService;
public NoteController(INoteService noteService) => this.noteService = noteService;
[Route("{noteName=default}")]
public IActionResult Index(string noteName)
{
var model = new ContentModel
{
CurrentNote = noteName,
Text = noteService.GetNote(noteName),
NoteNames = noteService.GetNoteNames()
};
return View(model);
}
[Route("{noteName}/delete")]
public IActionResult Delete(string noteName)
{
noteService.DeleteNote(noteName);
return Redirect("/");
}
}