You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
441 B

  1. using Microsoft.AspNet.Identity.EntityFramework;
  2. using Sevomin.Models;
  3. using Sevomin.Models.Helpers;
  4. using System.Threading.Tasks;
  5. using System.Web.Mvc;
  6. namespace Sevomin.WebFrontend.Controllers
  7. {
  8. public class HelpController : BaseController
  9. {
  10. public ActionResult ExportScript()
  11. {
  12. return View();
  13. }
  14. public ActionResult ExportRss()
  15. {
  16. return View();
  17. }
  18. }
  19. }