feat: server settings split up + copy changes across panel warning modals

This commit is contained in:
Calum H. (IMB11)
2026-06-26 17:09:22 +01:00
parent 27f629a7a3
commit 9ab9fe994f
41 changed files with 1030 additions and 530 deletions
@@ -101,10 +101,7 @@ export class ArchonServersV0Module extends AbstractModule {
* Send a power action to a server (Start, Stop, Restart, Kill)
* POST /modrinth/v0/servers/:id/power
*/
public async power(
serverId: string,
action: Archon.Servers.v0.PowerAction,
): Promise<void> {
public async power(serverId: string, action: Archon.Servers.v0.PowerAction): Promise<void> {
await this.client.request(`/servers/${serverId}/power`, {
api: 'archon',
method: 'POST',