mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
* Fixed up swagger generation * Updated Tachiyomi's latest-chapter to hopefully solve some sync issues. * Fixed #1279 with table of contents due to new EPubReader * When errors occur, show the event widget icon in red * Lots of documentation added and tweaked some wording around backups and swagger * For promidius * Return proper ChapterDTO * Hacks for Promidius * Cleanup code * No loose leaf, send max chapter * One more encode change * Implemented code per promiduius' requirements * Fixed a bug in the epub parsing where even if you had a series index and series group, but didn't have the series in the title, Kavita wouldn't group them properly. * Removed some extra comment * Implemented the ability to change a library's type after it's been setup. This displays a warning explaining the dangers of it. * Removed some whitespace * Blur descriptions based on read status for list item view to avoid spoilers * Tweaked placement of a tooltip due to new series detail styles * Hooked up a user preference for bluring unread summaries. Fixed a bug in refresh token where we would cause re-authentication when it shouldn't be needed.
29 lines
822 B
C#
29 lines
822 B
C#
using System.Threading.Tasks;
|
|
using API.Entities;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace API.Controllers
|
|
{
|
|
public class AdminController : BaseApiController
|
|
{
|
|
private readonly UserManager<AppUser> _userManager;
|
|
|
|
public AdminController(UserManager<AppUser> userManager)
|
|
{
|
|
_userManager = userManager;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Checks if an admin exists on the system. This is essentially a check to validate if the system has been setup.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[HttpGet("exists")]
|
|
public async Task<ActionResult<bool>> AdminExists()
|
|
{
|
|
var users = await _userManager.GetUsersInRoleAsync("Admin");
|
|
return users.Count > 0;
|
|
}
|
|
}
|
|
}
|