Felbook.Controllers.UserController.Followers C# (CSharp) Method

Followers() public method

public Followers ( string username ) : ActionResult
username string
return ActionResult
        public ActionResult Followers(string username)
        {
            var user = Model.UserService.FindByUsername(username);

            return View(new FollowersViewModel {
                CurrentUser = CurrentUser,
                User = user,
                Followers = user.Followers
            });
        }