Add a bunch of placeholder files

Placeholder files for future app structure
Also figured out how to have root url code stuff
This commit is contained in:
Melody Becker 2024-09-19 16:43:15 +02:00
parent b6ce6b7e2c
commit c75acc48a2
18 changed files with 172 additions and 6 deletions

View file

@ -1,8 +1,8 @@
import Model, { attr } from "@ember-data/model";
import Model, { attr } from '@ember-data/model';
export default class RemoteServerModel extends Model {
@attr("string") serverType;
@attr("string") name;
@attr("string") iconUrl;
@attr("boolean") isSelf;
@attr('string') serverType;
@attr('string') name;
@attr('string') iconUrl;
@attr('boolean') isSelf;
}