-
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(models): Move all current modesl under 2014 folder
- Loading branch information
Showing
144 changed files
with
367 additions
and
414 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import AbilityScore from '../../models/abilityScore/index.js'; | ||
import AbilityScore from '../../models/2014/abilityScore/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(AbilityScore); |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import Alignment from '../../models/alignment/index.js'; | ||
import Alignment from '../../models/2014/alignment/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(Alignment); |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import Background from '../../models/background/index.js'; | ||
import Background from '../../models/2014/background/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(Background); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import Condition from '../../models/condition/index.js'; | ||
import Condition from '../../models/2014/condition/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(Condition); |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import DamageType from '../../models/damageType/index.js'; | ||
import DamageType from '../../models/2014/damageType/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(DamageType); |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import EquipmentCategory from '../../models/equipmentCategory/index.js'; | ||
import EquipmentCategory from '../../models/2014/equipmentCategory/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(EquipmentCategory); |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import Equipment from '../../models/equipment/index.js'; | ||
import Equipment from '../../models/2014/equipment/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(Equipment); |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import Feat from '../../models/feat/index.js'; | ||
import Feat from '../../models/2014/feat/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(Feat); |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import Feature from '../../models/feature/index.js'; | ||
import Feature from '../../models/2014/feature/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(Feature); |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import Language from '../../models/language/index.js'; | ||
import Language from '../../models/2014/language/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(Language); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import MagicSchool from '../../models/magicSchool/index.js'; | ||
import MagicSchool from '../../models/2014/magicSchool/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(MagicSchool); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import Proficiency from '../../models/proficiency/index.js'; | ||
import Proficiency from '../../models/2014/proficiency/index.js'; | ||
import SimpleController from '../simpleController.js'; | ||
|
||
export default new SimpleController(Proficiency); |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import SimpleController from '../simpleController.js'; | ||
import Skill from '../../models/skill/index.js'; | ||
import Skill from '../../models/2014/skill/index.js'; | ||
|
||
export default new SimpleController(Skill); |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import SimpleController from '../simpleController.js'; | ||
import Trait from '../../models/trait/index.js'; | ||
import Trait from '../../models/2014/trait/index.js'; | ||
|
||
export default new SimpleController(Trait); |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import SimpleController from '../simpleController.js'; | ||
import WeaponProperty from '../../models/weaponProperty/index.js'; | ||
import WeaponProperty from '../../models/2014/weaponProperty/index.js'; | ||
|
||
export default new SimpleController(WeaponProperty); |
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
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
Oops, something went wrong.