opensupports/server/models/SupervisedRelation.php
Guillermo Giuliana cd73606852
Super user feature (#841)
* add ruby tests

* update ruby test

* backend part

* add get-supervised-ticket path and ruby tests

* update search-authors path and custom validation to get-supervised-tickets

* add supervised users components and css

* add supervised-users messages

* resolve minor bugs get super ticket, ruby tests and change file name

* add supervisor options on user panel

* change supervisor structure

* add pagination dashboard supervisor tickets

* change error name

* add error to path edit-supervised-list

* fix github comments

* resolve github comment backend

* add minor changes dashboard list tickets page
2020-07-21 06:52:34 -03:00

20 lines
391 B
PHP

<?php
class Supervisedrelation extends DataStore {
const TABLE = 'supervisedrelation';
public static function getProps() {
return[
'sharedUserList'
];
}
public function getDefaultProps() {
return array();
}
public function toArray() {
return [
'supervisedrelation' => $this->sharedUserList
];
}
}