This website works better with JavaScript.
Home
Help
Sign In
Teknikode
/
Teknik
Watch
3
Star
18
Fork
4
Code
Issues
39
Pull Requests
0
Releases
3
Wiki
Activity
Browse Source
Added 'allow get' to json return for rss.
tags/2.0.3
Teknikode
5 years ago
parent
afe1c8859f
commit
62399d605c
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
Teknik/Areas/RSS/Controllers/RSSController.cs
+ 1
- 1
Teknik/Areas/RSS/Controllers/RSSController.cs
View File
@@ -75,7 +75,7 @@ namespace Teknik.Areas.RSS.Controllers
return new RssResult(feed);
}
return Json(new { error = "Blog Not Found" });
return Json(new { error = "Blog Not Found" }
, JsonRequestBehavior.AllowGet
);
}
[AllowAnonymous]
Write
Preview
Loading…
Cancel
Save