Got more of the sorting stuff working, started implementing much of the back office security checks in the content controller, updates some of the c# unit tests and got a self-hosted test running (but commented out currently until we can mock things properly).

This commit is contained in:
Shannon
2013-08-07 19:28:32 +10:00
parent d01f3a1012
commit cbc841301b
26 changed files with 533 additions and 182 deletions

View File

@@ -114,7 +114,7 @@ function contentResource($q, $http, umbDataFormatter, umbRequestHelper) {
if (options.orderDirection === "asc") {
options.orderDirection = "Ascending";
}
else {
else if (options.orderDirection === "desc") {
options.orderDirection = "Descending";
}