mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
27 lines
744 B
C#
27 lines
744 B
C#
#nullable disable
|
|
using Microsoft.EntityFrameworkCore;
|
|
using NadekoBot.Services.Database.Models;
|
|
|
|
namespace NadekoBot.Db;
|
|
|
|
public static class MusicPlayerSettingsExtensions
|
|
{
|
|
public static async Task<MusicPlayerSettings> ForGuildAsync(this DbSet<MusicPlayerSettings> settings, ulong guildId)
|
|
{
|
|
var toReturn = await settings.AsQueryable().FirstOrDefaultAsync(x => x.GuildId == guildId);
|
|
|
|
if (toReturn is null)
|
|
{
|
|
var newSettings = new MusicPlayerSettings
|
|
{
|
|
GuildId = guildId,
|
|
PlayerRepeat = PlayerRepeatType.Queue
|
|
};
|
|
|
|
await settings.AddAsync(newSettings);
|
|
return newSettings;
|
|
}
|
|
|
|
return toReturn;
|
|
}
|
|
} |