1👍
It looks like you’re not passing in the user when you’re trying to save. Try this:
app = Application(user=request.user, name='App X', etc)
app.save()
Source:stackexchange.com
1👍
It looks like you’re not passing in the user when you’re trying to save. Try this:
app = Application(user=request.user, name='App X', etc)
app.save()