Skip to content

Commit

Permalink
updated readme to reflect final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dmostoller committed Mar 8, 2024
1 parent da20dd3 commit c5c2fab
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ There are 5 tables: Users, Paintings, Comments, Posts, and Events.
There are two one-to-many relationships that form a many to many relationship: Users---<Comments>----Paintings.
The Posts and Events tables are only accesible by the admins and therefor are self contained.

Every resource has two Flask-Resful classes for routes, with every resource having GET, POST PATCH, and DELETE routes except users and comments.
Every resource has two Flask-Resful classes for all routes, with every resource having GET, POST PATCH, and DELETE routes except users and comments. There are also authentication routes: Signup(POST), CheckSession(GET), Login(POST), and Logout(DELETE).


### Future Expansions
Expand Down
1 change: 0 additions & 1 deletion server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from models import User, Painting, Comment, Post, Event

# Views go here!

@app.route('/')
def index():
return '<h1>Project Server</h1>'
Expand Down

0 comments on commit c5c2fab

Please sign in to comment.