fixes the circle creation

This commit is contained in:
Paul Schneider
2015-06-14 23:47:34 +02:00
parent bacd124a78
commit 597b674b74
7 changed files with 2 additions and 46 deletions

View File

@ -15,7 +15,7 @@ namespace Yavsc.ApiControllers
/// Maintains a collection of articles
/// qualified with name value pairs
/// </summary>
public class BasketApiController : ApiController
public class BasketController : ApiController
{
/// <summary>
/// The wfmgr.

View File

@ -184,7 +184,7 @@ namespace Yavsc.ApiControllers
if (model.IsApprouved)
if (!Roles.IsUserInRole ("Admin"))
if (!Roles.IsUserInRole ("FrontOffice")) {
ModelState.AddModelError ("IsApprouved",
ModelState.AddModelError ("Register",
"Since you're not member of Admin or FrontOffice groups, " +
"you cannot ask for a pre-approuved registration");
return DefaultResponse ();

View File

@ -1,44 +0,0 @@
/* tables */
table.tablesorter {
font-family:arial;
background-color: #333;
margin:10px 0pt 15px;
font-size: 8pt;
text-align: left;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
background-color: rgba(0,0,0,0.5);
border: 1px solid #206;
font-size: 8pt;
padding: 4px;
}
table.tablesorter thead tr .header {
background-image: url(bg.gif);
background-repeat: no-repeat;
background-position: center right;
cursor: pointer;
}
table.tablesorter tbody td {
color: #ffa;
padding: 4px;
vertical-align: top;
}
table.tablesorter .odd td {
background-color: rgba(0,0,32,0.5);
}
table.tablesorter .even td {
background-color: rgba(16,0,16,0.5);
}
table.tablesorter thead tr .headerSortUp {
background-image: url(/Theme/dark/asc.gif);
}
table.tablesorter thead tr .headerSortDown {
background-image: url(/Theme/dark/desc.gif);
}
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp {
background-color: #123;
}