* AccountController.cs: Code formatting
* Web.csproj: cleanning * Web.config: Yavsc.Model.Circles in imported namespaces * Circles.aspx: Allow Circle view to handle null model
This commit is contained in:
parent
7fc21f1056
commit
bacd124a78
5 changed files with 20 additions and 4 deletions
|
|
@ -297,7 +297,9 @@ namespace Yavsc.Controllers
|
|||
[Authorize]
|
||||
public ActionResult Circles ()
|
||||
{
|
||||
return View (CircleManager.DefaultProvider.List (Membership.GetUser().UserName));
|
||||
string user = Membership.GetUser ().UserName;
|
||||
CircleInfoCollection cic = CircleManager.DefaultProvider.List (user);
|
||||
return View (cic);
|
||||
}
|
||||
/// <summary>
|
||||
/// Logout the specified returnUrl.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue