Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.WebApp/3.3/Configs/FilterConfig.cs @ 12428

Last change on this file since 12428 was 12428, checked in by ascheibe, 9 years ago

#2394 added web app and status page to trunk

File size: 252 bytes
Line 
1using System.Web.Mvc;
2
3namespace HeuristicLab.Services.WebApp.Configs {
4  public class FilterConfig {
5    public static void RegisterGlobalFilters(GlobalFilterCollection filters) {
6      filters.Add(new HandleErrorAttribute());
7    }
8  }
9}
Note: See TracBrowser for help on using the repository browser.