Results 54 comments of Patrick Kelley

Good find. Looks like the User model does not have a directive to cascade deletes to the tables for which it has relationships. In this case, it appears the user...

Temporary solution is to deactivate the user.

Hey @kevgliss, how difficult would that be?

We've made a couple updates here. 1) The Accounts API is finally respecting the active flag, greatly reducing the number of accounts shown in the dashboard. 2) I've upped the...

https://github.com/Netflix/security_monkey/blob/develop/security_monkey/watchers/ec2/ec2_instance.py#L83 It *should* check the name.

They are defined in `security_monkey/auth/__init__.py` ``` from .models import RBACRole anonymous = RBACRole(name="anonymous") view = RBACRole(name="View") comment = RBACRole(name="Comment") comment.add_parent(view) justify = RBACRole(name="Justify") justify.add_parent(comment) admin = RBACRole(name="Admin") admin.add_parent(justify) ``` They...

Hey Stefan, Are you doing a `db.session.add(item)` and a `db.session.commit()` and a `db.session.refresh(item)` afterwards?

not a bad suggestion