- Added image upload system (JPG/PNG, max 5MB) with live preview and removal option - Fixed Concurrency Exception during deletion (split transactions for reports and entries) - Optimized card layout: consistent height and height-based truncation for descriptions - Added sort direction toggle (Ascending/Descending) with arrow icons for Date, Name, and Year - Refactored HallOfFameService to use streams for Server/Wasm compatibility - Improved error handling and UI feedback for upload and delete operations
20 lines
869 B
C#
20 lines
869 B
C#
using Oqtane.Models;
|
|
using Oqtane.Modules;
|
|
|
|
namespace SZUAbsolventenverein.Module.HallOfFame
|
|
{
|
|
public class ModuleInfo : IModule
|
|
{
|
|
public ModuleDefinition ModuleDefinition => new ModuleDefinition
|
|
{
|
|
Name = "HallOfFame",
|
|
Description = "The Hall of Fame module displays selected individuals or achievements within the CMS. Entries are shown online, can be exported as a PDF, and are only published with user consen.",
|
|
Version = "1.0.3",
|
|
ServerManagerType = "SZUAbsolventenverein.Module.HallOfFame.Manager.HallOfFameManager, SZUAbsolventenverein.Module.HallOfFame.Server.Oqtane",
|
|
ReleaseVersions = "1.0.0,1.0.2,1.0.3",
|
|
Dependencies = "SZUAbsolventenverein.Module.HallOfFame.Shared.Oqtane",
|
|
PackageName = "SZUAbsolventenverein.Module.HallOfFame"
|
|
};
|
|
}
|
|
}
|