- fixed broken images on README.md - updated README.md - updated the PR template - adding option for changing the tab name - added tag headers for grid and list view - added function that resizes template app images to 64x64 on startup - fixed error that was blocking image types from being uploaded
14 lines
440 B
Python
14 lines
440 B
Python
from dashmachine import db
|
|
|
|
|
|
class Settings(db.Model):
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
theme = db.Column(db.String())
|
|
accent = db.Column(db.String())
|
|
background = db.Column(db.String())
|
|
roles = db.Column(db.String())
|
|
home_access_groups = db.Column(db.String())
|
|
settings_access_groups = db.Column(db.String())
|
|
home_view_mode = db.Column(db.String())
|
|
custom_app_title = db.Column(db.String())
|