lambdacms-core 0.0.7.1 → 0.0.7.2
raw patch · 4 files changed
+69/−4 lines, 4 files
Files
- CHANGES.md +4/−1
- config/models +30/−0
- config/routes +30/−0
- lambdacms-core.cabal +5/−3
CHANGES.md view
@@ -4,5 +4,8 @@ #### dev * ... -#### 0.7.1+#### 0.0.7.2+* Fixed broken package++#### 0.0.7.1 * Initial upload to Hackage
+ config/models view
@@ -0,0 +1,30 @@+User json+ ident Text+ name Text+ password Text Maybe+ email Text+ active Bool+ token Text Maybe+ createdAt UTCTime+ lastLogin UTCTime Maybe+ deletedAt UTCTime Maybe+ UniqueUser ident+ UniqueName name+ UniqueEmail email+ UniqueAuth email active+ deriving Typeable Show+-- Email+-- email Text+-- user UserId Maybe+-- verkey Text Maybe+-- UniqueEmail email++ActionLog json+ ident Text+ userId UserId+ message Text+ lang Text+ path Text Maybe+ createdAt UTCTime+ UniqueLog ident lang+ deriving Typeable Show
+ config/routes view
@@ -0,0 +1,30 @@+/static AdminStaticR:+ /css CssAdminR:+ /normalize.css NormalizeR GET+ /bootstrap.css BootstrapCssR GET++ /js JsAdminR:+ /bootstrap.js BootstrapJsR GET+ /jquery.js JQueryR GET++ /fonts FontsAdminR:+ /glyphicons-halflings-regular.woff GlyphiconsWoffR GET+ /glyphicons-halflings-regular.ttf GlyphiconsTtfR GET+ /glyphicons-halflings-regular.eot GlyphiconsEotR GET+ /glyphicons-halflings-regular.svg GlyphiconsSvgR GET++ /img ImageAdminR:+ /lambdacms-logo.png LambdaCmsLogoR GET++/ AdminHomeR GET+/activate/#UserId/#Text UserAdminActivateR GET POST++-- User CRUD+/users UserAdminR:+ / UserAdminIndexR GET+ /new UserAdminNewR GET POST+ !/#UserId UserAdminEditR GET PATCH DELETE CHPASS RQPASS DEACTIVATE ACTIVATE++/activity ActionLogAdminR:+ / ActionLogAdminIndexR GET+ /user/#UserId ActionLogAdminUserR GET
lambdacms-core.cabal view
@@ -1,13 +1,13 @@ name: lambdacms-core-version: 0.0.7.1+version: 0.0.7.2 license: MIT license-file: LICENSE-author: Cies Breijs, Mats RietDijk, Rutger van Aalst+author: Cies Breijs, Mats Rietdijk, Rutger van Aalst maintainer: cies@AT-hoppinger.com copyright: (c) 2014 Hoppinger bug-reports: https://github.com/lambdacms/lambdacms-core homepage: http://lambdacms.org-synopsis: Core package of a Content Management System (CMS) for Yesod.+synopsis: Core CMS extension for Yesod apps description: LambdaCms is a Content Management System (CMS) in Haskell using Yesod. stability: alpha@@ -29,6 +29,8 @@ , static/fonts/*.woff , static/img/*.png , static/js/*.min.js+ , config/models+ , config/routes source-repository head type: git