Socket
Socket
Sign inDemoInstall

@kohanajs/mod-cms

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kohanajs/mod-cms - npm Package Compare versions

Comparing version 5.2.1 to 5.2.3

classes/model/TagValue.js

7

CHANGELOG.md

@@ -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 @@

11

classes/model/Tag.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc