mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
* Commit * add the form post * dv * fixes * Change wording * Address review * wording change * Added some stuff * New format * bruh * thanks perry! * yes * More fixes! * typo * Add a command to show the list, improve the UI slightly, split up command names * Fix UI controller * Add better comment * Get rid of weird recursive thing * Cleanup * Work on moving feedback popups out of simulation * Move round end screen subscription to feedback ui controller * Finish moving feedback popups out of simulation * Fix _ as parameter * Clean up FeedbackPopupUIController * Clean up commands * Fix prototype yaml * Fix openfeedbackpopup command description * Update Resources/Locale/en-US/feedbackpopup/feedbackpopup.ftl Co-authored-by: Simon <63975668+Simyon264@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Simon <63975668+Simyon264@users.noreply.github.com> * Address reviews * Address reviews * Fix FeedbackPopupPrototype.cs using empty string instead of string.empty * Address some more of the reviews, style nano is still trolling sadly * Fix feedback popup styling * Fix PopupPrototype ID field not having a setter * Address reviews * Add label when no feedback entries are present Change link button to not show when no link is set --------- Co-authored-by: beck-thompson <beck314159@hotmail.com> Co-authored-by: SlamBamActionman <slambamactionman@gmail.com> Co-authored-by: Simon <63975668+Simyon264@users.noreply.github.com>
89 lines
3.7 KiB
C#
89 lines
3.7 KiB
C#
using Content.Server.Administration;
|
|
using Content.Server.Administration.Logs;
|
|
using Content.Server.Administration.Managers;
|
|
using Content.Server.Administration.Notes;
|
|
using Content.Server.Afk;
|
|
using Content.Server.Chat.Managers;
|
|
using Content.Server.Connection;
|
|
using Content.Server.Database;
|
|
using Content.Server.Discord;
|
|
using Content.Server.Discord.DiscordLink;
|
|
using Content.Server.Discord.WebhookMessages;
|
|
using Content.Server.EUI;
|
|
using Content.Server.FeedbackSystem;
|
|
using Content.Server.GhostKick;
|
|
using Content.Server.Info;
|
|
using Content.Server.Mapping;
|
|
using Content.Server.Maps;
|
|
using Content.Server.NodeContainer.NodeGroups;
|
|
using Content.Server.Players.JobWhitelist;
|
|
using Content.Server.Players.PlayTimeTracking;
|
|
using Content.Server.Players.RateLimiting;
|
|
using Content.Server.Preferences.Managers;
|
|
using Content.Server.ServerInfo;
|
|
using Content.Server.ServerUpdates;
|
|
using Content.Server.Voting.Managers;
|
|
using Content.Server.Worldgen.Tools;
|
|
using Content.Shared.Administration.Logs;
|
|
using Content.Shared.Administration.Managers;
|
|
using Content.Shared.Chat;
|
|
using Content.Shared.FeedbackSystem;
|
|
using Content.Shared.IoC;
|
|
using Content.Shared.Kitchen;
|
|
using Content.Shared.Players.PlayTimeTracking;
|
|
using Content.Shared.Players.RateLimiting;
|
|
|
|
namespace Content.Server.IoC;
|
|
|
|
internal static class ServerContentIoC
|
|
{
|
|
public static void Register(IDependencyCollection deps)
|
|
{
|
|
SharedContentIoC.Register(deps);
|
|
deps.Register<IChatManager, ChatManager>();
|
|
deps.Register<ISharedChatManager, ChatManager>();
|
|
deps.Register<IChatSanitizationManager, ChatSanitizationManager>();
|
|
deps.Register<IServerPreferencesManager, ServerPreferencesManager>();
|
|
deps.Register<IServerDbManager, ServerDbManager>();
|
|
deps.Register<RecipeManager, RecipeManager>();
|
|
deps.Register<INodeGroupFactory, NodeGroupFactory>();
|
|
deps.Register<IConnectionManager, ConnectionManager>();
|
|
deps.Register<ServerUpdateManager>();
|
|
deps.Register<IAdminManager, AdminManager>();
|
|
deps.Register<ISharedAdminManager, AdminManager>();
|
|
deps.Register<EuiManager, EuiManager>();
|
|
deps.Register<IVoteManager, VoteManager>();
|
|
deps.Register<IPlayerLocator, PlayerLocator>();
|
|
deps.Register<IAfkManager, AfkManager>();
|
|
deps.Register<IGameMapManager, GameMapManager>();
|
|
deps.Register<RulesManager, RulesManager>();
|
|
deps.Register<IBanManager, BanManager>();
|
|
deps.Register<ContentNetworkResourceManager>();
|
|
deps.Register<IAdminNotesManager, AdminNotesManager>();
|
|
deps.Register<GhostKickManager>();
|
|
deps.Register<ISharedAdminLogManager, AdminLogManager>();
|
|
deps.Register<IAdminLogManager, AdminLogManager>();
|
|
deps.Register<PlayTimeTrackingManager>();
|
|
deps.Register<UserDbDataManager>();
|
|
deps.Register<ServerInfoManager>();
|
|
deps.Register<PoissonDiskSampler>();
|
|
deps.Register<DiscordWebhook>();
|
|
deps.Register<VoteWebhooks>();
|
|
deps.Register<ServerDbEntryManager>();
|
|
deps.Register<ISharedPlaytimeManager, PlayTimeTrackingManager>();
|
|
deps.Register<ServerApi>();
|
|
deps.Register<JobWhitelistManager>();
|
|
deps.Register<PlayerRateLimitManager>();
|
|
deps.Register<SharedPlayerRateLimitManager, PlayerRateLimitManager>();
|
|
deps.Register<MappingManager>();
|
|
deps.Register<IWatchlistWebhookManager, WatchlistWebhookManager>();
|
|
deps.Register<ConnectionManager>();
|
|
deps.Register<MultiServerKickManager>();
|
|
deps.Register<CVarControlManager>();
|
|
deps.Register<DiscordLink>();
|
|
deps.Register<DiscordChatLink>();
|
|
deps.Register<ServerFeedbackManager>();
|
|
deps.Register<ISharedFeedbackManager, ServerFeedbackManager>();
|
|
}
|
|
}
|