summaryrefslogtreecommitdiff
path: root/app/Model/TaskFile.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Model/TaskFile.php')
-rw-r--r--app/Model/TaskFile.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/app/Model/TaskFile.php b/app/Model/TaskFile.php
deleted file mode 100644
index 45a3b97f..00000000
--- a/app/Model/TaskFile.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-
-namespace Kanboard\Model;
-
-/**
- * Task File Model
- *
- * @package model
- * @author Frederic Guillot
- */
-class TaskFile extends File
-{
- /**
- * SQL table name
- *
- * @var string
- */
- const TABLE = 'task_has_files';
-
- /**
- * SQL foreign key
- *
- * @var string
- */
- const FOREIGN_KEY = 'task_id';
-
- /**
- * Path prefix
- *
- * @var string
- */
- const PATH_PREFIX = 'tasks';
-
- /**
- * Events
- *
- * @var string
- */
- const EVENT_CREATE = 'task.file.create';
-
- /**
- * Handle screenshot upload
- *
- * @access public
- * @param integer $task_id Task id
- * @param string $blob Base64 encoded image
- * @return bool|integer
- */
- public function uploadScreenshot($task_id, $blob)
- {
- $original_filename = e('Screenshot taken %s', $this->helper->dt->datetime(time())).'.png';
- return $this->uploadContent($task_id, $original_filename, $blob);
- }
-}