mirror of
https://github.com/C9Glax/tranga.git
synced 2025-06-21 02:25:37 +02:00
[postgres-Server-V2] Add parameter array to token gen
This commit is contained in:
@ -8,7 +8,7 @@ namespace API.Schema;
|
||||
public class MangaAltTitle(string language, string title)
|
||||
{
|
||||
[MaxLength(64)]
|
||||
public string AltTitleId { get; init; } = TokenGen.CreateToken("AltTitle", string.Join(language, title));
|
||||
public string AltTitleId { get; init; } = TokenGen.CreateToken("AltTitle", language, title);
|
||||
[MaxLength(8)]
|
||||
public string Language { get; init; } = language;
|
||||
public string Title { get; set; } = title;
|
||||
|
Reference in New Issue
Block a user