diff options
Diffstat (limited to 'app/default_data.py')
-rw-r--r-- | app/default_data.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/app/default_data.py b/app/default_data.py index eb8aec6..3a9f5f1 100644 --- a/app/default_data.py +++ b/app/default_data.py @@ -63,7 +63,7 @@ def populate_test_data(session): mod = Package() - mod.approved = True + mod.state = PackageState.APPROVED mod.name = "alpha" mod.title = "Alpha Test" mod.license = licenses["MIT"] @@ -87,7 +87,7 @@ def populate_test_data(session): session.add(rel) mod1 = Package() - mod1.approved = True + mod1.state = PackageState.APPROVED mod1.name = "awards" mod1.title = "Awards" mod1.license = licenses["LGPLv2.1"] @@ -124,7 +124,7 @@ awards.register_achievement("award_mesefind",{ session.add(rel) mod2 = Package() - mod2.approved = True + mod2.state = PackageState.APPROVED mod2.name = "mesecons" mod2.title = "Mesecons" mod2.tags.append(tags["tools"]) @@ -213,7 +213,7 @@ No warranty is provided, express or implied, for any part of the project. session.add(mod2) mod = Package() - mod.approved = True + mod.state = PackageState.APPROVED mod.name = "handholds" mod.title = "Handholds" mod.license = licenses["MIT"] @@ -237,7 +237,7 @@ No warranty is provided, express or implied, for any part of the project. session.add(rel) mod = Package() - mod.approved = True + mod.state = PackageState.APPROVED mod.name = "other_worlds" mod.title = "Other Worlds" mod.license = licenses["MIT"] @@ -254,7 +254,7 @@ No warranty is provided, express or implied, for any part of the project. session.add(mod) mod = Package() - mod.approved = True + mod.state = PackageState.APPROVED mod.name = "food" mod.title = "Food" mod.license = licenses["LGPLv2.1"] @@ -270,7 +270,7 @@ No warranty is provided, express or implied, for any part of the project. session.add(mod) mod = Package() - mod.approved = True + mod.state = PackageState.APPROVED mod.name = "food_sweet" mod.title = "Sweet Foods" mod.license = licenses["CC0"] @@ -287,7 +287,7 @@ No warranty is provided, express or implied, for any part of the project. session.add(mod) game1 = Package() - game1.approved = True + game1.state = PackageState.APPROVED game1.name = "capturetheflag" game1.title = "Capture The Flag" game1.type = PackageType.GAME @@ -350,7 +350,7 @@ Uses the CTF PvP Engine. mod = Package() - mod.approved = True + mod.state = PackageState.APPROVED mod.name = "pixelbox" mod.title = "PixelBOX Reloaded" mod.license = licenses["CC0"] |