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;
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: