Skip to content

Commit a926c9a

Browse files
committed
reformatted codebase
1 parent f97f1c5 commit a926c9a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
A boilerplate made for kick-starting your next flask project, with ready to go authentication(using JWT) module and a base REST api module. Godspeed!
99

10-
## Features
11-
1210
- Out of the box Authentication with JWT
1311
- And extendable base module to create new API endpoints with ease. Supported methods are: GET, POST
1412
- Out of the box Authentication checker decorator that you can add to any endpoint!
@@ -63,5 +61,4 @@ A boilerplate made for kick-starting your next flask project, with ready to go a
6361
## Documentations
6462

6563
- Using `Base.py` to create custom views: [see wiki](https://github.com/YAS-opensource/flask-boilerplate/wiki/Base.py-superclass)
66-
6764
- API endpoints: [see wiki](https://github.com/YAS-opensource/flask-boilerplate/wiki/API-endpoints)

src/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88

99
class User(db.Model):
10+
1011
"""User Model for storing user related details."""
1112

1213
__tablename__ = "users"

0 commit comments

Comments
 (0)