CMS / 08. Notices
Updated: 04. January 2019
Author: Peter Širka

08. Notices

Professional Support Chat with contributors

Notices are in other words: shorted posts. Supports markdown syntax with Images, Links, Lists and with bold + italic text format. Notices are rendered in the list of queried notices.

var options = {};

// All filter options are defined in:
// Model: /models/notices.js

$QUERY('Notices', options, function(err, response) {

    // {Number} Count of items
    response.count;

    // {Array} Items
    response.items;
    
    // {Number} Items per page
    response.limit;

    // {Number} Count of pages
    response.pages;

    // {Number} Current page
    response.page;

});