From a750b8ab2a0cb715da6fd9025a7ec8375db68a4d Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Wed, 21 May 2014 22:33:57 -0400 Subject: Add categories for projects and tasks --- common.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'common.php') diff --git a/common.php b/common.php index 75b92df4..70b18a51 100644 --- a/common.php +++ b/common.php @@ -6,7 +6,7 @@ require __DIR__.'/core/translator.php'; $registry = new Core\Registry; -$registry->db_version = 15; +$registry->db_version = 16; $registry->db = function() use ($registry) { require __DIR__.'/vendor/PicoDb/Database.php'; @@ -110,6 +110,11 @@ $registry->google = function() use ($registry) { return new \Model\Google($registry->shared('db'), $registry->shared('event')); }; +$registry->category = function() use ($registry) { + require_once __DIR__.'/models/category.php'; + return new \Model\Category($registry->shared('db'), $registry->shared('event')); +}; + if (file_exists('config.php')) require 'config.php'; // Board refresh frequency in seconds for the public board view -- cgit v1.2.3