adhocteam / soapbox

Apache License 2.0
11 stars 3 forks source link

Tie applications to a user and require login #127

Closed nickclyde closed 7 years ago

nickclyde commented 7 years ago

Fixes #99 and Fixes #100

This ties applications to a user, so that users can only see their own applications. It also requires users to login to the interface before allowing them to create any applications.

DB migration:

alter table applications add column user_id integer references users;
nickclyde commented 7 years ago

Okay @paulsmith, made user_id not null and rebased on current master.