diff --git a/services/UsersService.php b/services/UsersService.php index 3f08e4a6..14810db0 100644 --- a/services/UsersService.php +++ b/services/UsersService.php @@ -50,19 +50,6 @@ class UsersService extends BaseService return $returnUsers; } - public function GetUserSettinsg($userId) - { - $settingRow = $this->getDatabase()->user_settings()->where('user_id = :1 AND key = :2', $userId, $settingKey)->fetch(); - if ($settingRow !== null) - { - return $settingRow->value; - } - else - { - return null; - } - } - public function GetUserSetting($userId, $settingKey) { $settingRow = $this->getDatabase()->user_settings()->where('user_id = :1 AND key = :2', $userId, $settingKey)->fetch();