@kohanajs/mod-cms
Advanced tools
Comparing version 5.2.1 to 5.2.3
@@ -5,2 +5,9 @@ # Changelog | ||
### [5.2.3](https://gitlab.com/kohana-js/proposals/level0/mod-cms/compare/v5.2.2...v5.2.3) (2022-02-18) | ||
### Bug Fixes | ||
* tag parent error ([cacc009](https://gitlab.com/kohana-js/proposals/level0/mod-cms/commit/cacc0091246e1b65c778bbf066065c4f90b24d5f)) | ||
### [5.2.1](https://gitlab.com/kohana-js/proposals/level0/mod-cms/compare/v5.2.0...v5.2.1) (2022-02-17) | ||
@@ -7,0 +14,0 @@ |
@@ -5,4 +5,4 @@ const {ORM} = require('kohanajs'); | ||
tag_type_id = null; | ||
parent_tag = null; | ||
name = null; | ||
parent_tag_id = null; | ||
@@ -13,10 +13,11 @@ static joinTablePrefix = 'tag'; | ||
static fields = new Map([ | ||
["name", "String!"], | ||
["parent_tag_id", "Int"] | ||
["name", "String!"] | ||
]); | ||
static belongsTo = new Map([ | ||
["tag_type_id", "TagType"] | ||
["tag_type_id", "TagType"], | ||
["parent_tag", "Tag"] | ||
]); | ||
static hasMany = [ | ||
["tag_id", "TagTranslate"] | ||
["parent_tag", "Tag"], | ||
["tag_id", "TagValue"] | ||
]; | ||
@@ -23,0 +24,0 @@ } |
{ | ||
"name": "@kohanajs/mod-cms", | ||
"version": "5.2.1", | ||
"version": "5.2.3", | ||
"description": "The CMS module for KohanaJS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55476
1265