-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from tsaxking/chore-update-scripts-to-7278a79b…
…d18209e0d86c3ad10b185556c54e18be Chore update scripts to 7278a79
- Loading branch information
Showing
34 changed files
with
806 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import '../../utilities/imports'; | ||
import App from '../../views/dashboards/User.svelte'; | ||
|
||
const myApp = new App({ target: document.body }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { Account } from '../../models/account'; | ||
import { Role } from '../../models/roles'; | ||
import '../../utilities/imports'; | ||
import App from '../../views/components/accounts/RoleBadge.svelte'; | ||
|
||
const myApp = new App({ | ||
target: document.body, | ||
props: { | ||
account: new Account({ | ||
id: '1', | ||
username: 'test', | ||
email: '', | ||
firstName: '', | ||
lastName: '', | ||
verified: 1, | ||
created: Date.now(), | ||
phoneNumber: '', | ||
picture: '', | ||
}), | ||
role: new Role({ | ||
id: '1', | ||
name: 'Test', | ||
description: 'Test', | ||
rank: 1, | ||
}), | ||
deletable: true, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.