diff options
Diffstat (limited to 'user/user.go')
| -rw-r--r-- | user/user.go | 22 | 
1 files changed, 12 insertions, 10 deletions
diff --git a/user/user.go b/user/user.go index 726c5c2..b130ab9 100644 --- a/user/user.go +++ b/user/user.go @@ -40,17 +40,19 @@ func init() {  type User struct {  	gorm.Model    u.Address -  FullName   string -  FirmName   string -  Gstin      string -  Phone      string -  Email      string -  Website    string -	Username   string -	Password   string +  FullName      string +  FirmName      string +  Gstin         string +  Phone         string +  Email         string +  Website       string +	Username      string +	Password      string +	LogoFile      string +	SignatureFile string  	// will be printed with address on the invoice -	Details    string -	IsVerified bool +	Details       string +	IsVerified    bool  	// a note is printed on every invoice.  	// This is the default that gets automatically set  	DefaultInvoiceNote string  |