Skip to content

Commit

Permalink
Merge e53d341 into 308b3b1
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmancuso authored Aug 31, 2018
2 parents 308b3b1 + e53d341 commit f71d796
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 7 deletions.
File renamed without changes.
3 changes: 2 additions & 1 deletion masonite/auth/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
from .Auth import Auth
from .Csrf import Csrf
from .Sign import Sign
from .Sign import Sign
1 change: 0 additions & 1 deletion masonite/facades/__init__.py

This file was deleted.

Binary file removed masonite/facades/__pycache__/Auth.cpython-36.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion masonite/snippets/auth/controllers/HomeController.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
''' A Module Description '''
from masonite.facades.Auth import Auth
from masonite.auth import Auth

class HomeController(object):
''' Home Dashboard Controller '''
Expand Down
2 changes: 1 addition & 1 deletion masonite/snippets/auth/controllers/LoginController.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
''' A Module Description '''
from masonite.facades.Auth import Auth
from masonite.auth import Auth


class LoginController(object):
Expand Down
2 changes: 1 addition & 1 deletion masonite/snippets/auth/controllers/RegisterController.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
''' A Module Description '''
from masonite.facades.Auth import Auth
from masonite.auth import Auth
from config import auth
import bcrypt

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
packages=[
'masonite',
'masonite.auth',
'masonite.facades',
'masonite.providers',
'masonite.commands',
'masonite.drivers',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_auth.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from masonite.facades.Auth import Auth
from masonite.auth import Auth
from masonite.request import Request
from masonite.testsuite.TestSuite import generate_wsgi

Expand Down

0 comments on commit f71d796

Please sign in to comment.