Skip to content

Commit

Permalink
Merge pull request #156 from SergeoLacruz/master
Browse files Browse the repository at this point in the history
Add class for listing users
  • Loading branch information
SchrodingersGat authored Dec 12, 2022
2 parents 3f4f2f3 + 86ef465 commit bcba981
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions inventree/user.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-

import logging

import inventree.base


logger = logging.getLogger('inventree')


class User(inventree.base.InventreeObject):
""" Class representing the User database model """

URL = 'user'

0 comments on commit bcba981

Please sign in to comment.