Modify remove_credentials to allow "creds remove"

`creds remove CredID` was not working because the method was commented on, I also changed the table name from credentials to users.
main
Julio Ureña 2022-11-17 11:18:13 -04:00 committed by GitHub
parent 2c4be7b9e4
commit 81b53b9652
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -271,16 +271,16 @@ class database:
logging.debug('add_group(domain={}, name={}) => {}'.format(domain, name, cur.lastrowid))
return cur.lastrowid
'''
def remove_credentials(self, credIDs):
"""
Removes a credential ID from the database
"""
for credID in credIDs:
cur = self.conn.cursor()
cur.execute("DELETE FROM credentials WHERE id=?", [credID])
cur.execute("DELETE FROM users WHERE id=?", [credID])
cur.close()
'''
def add_admin_user(self, credtype, domain, username, password, host, userid=None):
domain = domain.split('.')[0].upper()