Skip to content
This repository has been archived by the owner on Nov 14, 2018. It is now read-only.

Commit

Permalink
Merge pull request #2230 from owncloud/use-new-user-backend
Browse files Browse the repository at this point in the history
Use new user backend class
  • Loading branch information
DeepDiver1975 authored Nov 7, 2018
2 parents 0eb47bf + 009c41d commit 8fd7c74
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion django_auth/lib/user.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Authentification backend to authenticate agains a django webapplication using
* django.contrib.auth.
*/
class OC_USER_DJANGO extends OC_User_Backend {
class OC_USER_DJANGO extends OC\User\Backend {
/**
* @brief Create a new user
* @param $uid The username of the user to create
Expand Down
2 changes: 1 addition & 1 deletion user_external/lib/base.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @license http://www.gnu.org/licenses/agpl AGPL
* @link http://github.com/owncloud/apps
*/
abstract class Base extends \OC_User_Backend{
abstract class Base extends \OC\User\Backend{
protected $backend = '';

/**
Expand Down
2 changes: 1 addition & 1 deletion user_persona/user_persona.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* later.
*/

class OC_USER_PERSONA extends OC_User_Backend {
class OC_USER_PERSONA extends OC\User\Backend {

protected $_isPersonaRequest;

Expand Down
2 changes: 1 addition & 1 deletion user_saml/user_saml.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*
*/

class OC_USER_SAML extends OC_User_Backend {
class OC_USER_SAML extends OC\User\Backend {

// cached settings
protected $sspPath;
Expand Down
2 changes: 1 addition & 1 deletion user_vd/lib/vd.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

class OC_USER_VD extends OC_User_Backend{
class OC_USER_VD extends OC\User\Backend{
public $domain;
public function __construct(){
}
Expand Down

0 comments on commit 8fd7c74

Please sign in to comment.