mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
parent
e4c075ea4b
commit
c66fae703c
5 changed files with 671 additions and 671 deletions
|
@ -51,9 +51,9 @@ Space view.
|
||||||
|
|
||||||
## Latest version
|
## Latest version
|
||||||
|
|
||||||
[Community edition: v1.64.1](https://github.com/documize/community/releases)
|
[Community edition: v1.64.2](https://github.com/documize/community/releases)
|
||||||
|
|
||||||
[Enterprise edition: v1.66.1](https://documize.com/downloads)
|
[Enterprise edition: v1.66.2](https://documize.com/downloads)
|
||||||
|
|
||||||
## OS support
|
## OS support
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ func (s Scope) Add(ctx domain.RequestContext, account account.Account) (err erro
|
||||||
// GetUserAccount returns the database account record corresponding to the given userID, using the client's current organizaion.
|
// GetUserAccount returns the database account record corresponding to the given userID, using the client's current organizaion.
|
||||||
func (s Scope) GetUserAccount(ctx domain.RequestContext, userID string) (account account.Account, err error) {
|
func (s Scope) GetUserAccount(ctx domain.RequestContext, userID string) (account account.Account, err error) {
|
||||||
err = s.Runtime.Db.Get(&account, `
|
err = s.Runtime.Db.Get(&account, `
|
||||||
SELECT a.id, a.refid, a.orgid, a.userid, a.editor, `+"a.`admin`"+`, a.users, a.analytics, a.active, a.created, a.revised,
|
SELECT a.id, a.refid, a.orgid, a.userid, a.editor, a.admin, a.users, a.analytics, a.active, a.created, a.revised,
|
||||||
b.company, b.title, b.message, b.domain
|
b.company, b.title, b.message, b.domain
|
||||||
FROM account a, organization b
|
FROM account a, organization b
|
||||||
WHERE b.refid=a.orgid AND a.orgid=? AND a.userid=?`, ctx.OrgID, userID)
|
WHERE b.refid=a.orgid AND a.orgid=? AND a.userid=?`, ctx.OrgID, userID)
|
||||||
|
@ -61,7 +61,7 @@ func (s Scope) GetUserAccount(ctx domain.RequestContext, userID string) (account
|
||||||
// GetUserAccounts returns a slice of database account records, for all organizations that the userID is a member of, in organization title order.
|
// GetUserAccounts returns a slice of database account records, for all organizations that the userID is a member of, in organization title order.
|
||||||
func (s Scope) GetUserAccounts(ctx domain.RequestContext, userID string) (t []account.Account, err error) {
|
func (s Scope) GetUserAccounts(ctx domain.RequestContext, userID string) (t []account.Account, err error) {
|
||||||
err = s.Runtime.Db.Select(&t, `
|
err = s.Runtime.Db.Select(&t, `
|
||||||
SELECT a.id, a.refid, a.orgid, a.userid, a.editor, `+"a.`admin`"+`, a.users, a.analytics, a.active, a.created, a.revised,
|
SELECT a.id, a.refid, a.orgid, a.userid, a.editor, a.admin, a.users, a.analytics, a.active, a.created, a.revised,
|
||||||
b.company, b.title, b.message, b.domain
|
b.company, b.title, b.message, b.domain
|
||||||
FROM account a, organization b
|
FROM account a, organization b
|
||||||
WHERE a.userid=? AND a.orgid=b.refid AND a.active=1 ORDER BY b.title`, userID)
|
WHERE a.userid=? AND a.orgid=b.refid AND a.active=1 ORDER BY b.title`, userID)
|
||||||
|
@ -76,7 +76,7 @@ func (s Scope) GetUserAccounts(ctx domain.RequestContext, userID string) (t []ac
|
||||||
// GetAccountsByOrg returns a slice of database account records, for all users in the client's organization.
|
// GetAccountsByOrg returns a slice of database account records, for all users in the client's organization.
|
||||||
func (s Scope) GetAccountsByOrg(ctx domain.RequestContext) (t []account.Account, err error) {
|
func (s Scope) GetAccountsByOrg(ctx domain.RequestContext) (t []account.Account, err error) {
|
||||||
err = s.Runtime.Db.Select(&t,
|
err = s.Runtime.Db.Select(&t,
|
||||||
`SELECT a.id, a.refid, a.orgid, a.userid, a.editor, `+"a.`admin`"+`, a.users, a.analytics, a.active, a.created, a.revised,
|
`SELECT a.id, a.refid, a.orgid, a.userid, a.editor, a.admin, a.users, a.analytics, a.active, a.created, a.revised,
|
||||||
b.company, b.title, b.message, b.domain
|
b.company, b.title, b.message, b.domain
|
||||||
FROM account a, organization b
|
FROM account a, organization b
|
||||||
WHERE a.orgid=b.refid AND a.orgid=? AND a.active=1`, ctx.OrgID)
|
WHERE a.orgid=b.refid AND a.orgid=? AND a.active=1`, ctx.OrgID)
|
||||||
|
|
|
@ -114,7 +114,7 @@ func (s Scope) GetActiveUsersForOrganization(ctx domain.RequestContext) (u []use
|
||||||
|
|
||||||
err = s.Runtime.Db.Select(&u,
|
err = s.Runtime.Db.Select(&u,
|
||||||
`SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.lastversion, u.created, u.revised,
|
`SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.lastversion, u.created, u.revised,
|
||||||
u.global, a.active, a.editor, `+"a.`admin`"+`, a.users as viewusers, a.analytics
|
u.global, a.active, a.editor, a.admin, a.users AS viewusers, a.analytics
|
||||||
FROM user u, account a
|
FROM user u, account a
|
||||||
WHERE u.refid=a.userid AND a.orgid=? AND a.active=1
|
WHERE u.refid=a.userid AND a.orgid=? AND a.active=1
|
||||||
ORDER BY u.firstname,u.lastname`,
|
ORDER BY u.firstname,u.lastname`,
|
||||||
|
@ -143,7 +143,7 @@ func (s Scope) GetUsersForOrganization(ctx domain.RequestContext, filter string)
|
||||||
|
|
||||||
err = s.Runtime.Db.Select(&u,
|
err = s.Runtime.Db.Select(&u,
|
||||||
`SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.lastversion, u.created, u.revised,
|
`SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.lastversion, u.created, u.revised,
|
||||||
u.global, a.active, a.editor `+"a.`admin`"+`, a.users as viewusers, a.analytics
|
u.global, a.active, a.editor, a.admin, a.users AS viewusers, a.analytics
|
||||||
FROM user u, account a
|
FROM user u, account a
|
||||||
WHERE u.refid=a.userid AND a.orgid=? `+likeQuery+
|
WHERE u.refid=a.userid AND a.orgid=? `+likeQuery+
|
||||||
`ORDER BY u.firstname, u.lastname LIMIT 100`, ctx.OrgID)
|
`ORDER BY u.firstname, u.lastname LIMIT 100`, ctx.OrgID)
|
||||||
|
@ -165,7 +165,7 @@ func (s Scope) GetSpaceUsers(ctx domain.RequestContext, spaceID string) (u []use
|
||||||
|
|
||||||
err = s.Runtime.Db.Select(&u, `
|
err = s.Runtime.Db.Select(&u, `
|
||||||
SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.created, u.lastversion, u.revised, u.global,
|
SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.created, u.lastversion, u.revised, u.global,
|
||||||
a.active, a.users AS viewusers, a.editor, `+"a.`admin`"+`, a.analytics
|
a.active, a.users AS viewusers, a.editor, a.admin, a.analytics
|
||||||
FROM user u, account a
|
FROM user u, account a
|
||||||
WHERE a.orgid=? AND u.refid = a.userid AND a.active=1 AND u.refid IN (
|
WHERE a.orgid=? AND u.refid = a.userid AND a.active=1 AND u.refid IN (
|
||||||
SELECT whoid from permission WHERE orgid=? AND who='user' AND scope='object' AND location='space' AND refid=? UNION ALL
|
SELECT whoid from permission WHERE orgid=? AND who='user' AND scope='object' AND location='space' AND refid=? UNION ALL
|
||||||
|
@ -194,7 +194,7 @@ func (s Scope) GetUsersForSpaces(ctx domain.RequestContext, spaces []string) (u
|
||||||
|
|
||||||
query, args, err := sqlx.In(`
|
query, args, err := sqlx.In(`
|
||||||
SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.lastversion, u.created, u.revised, u.global,
|
SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.lastversion, u.created, u.revised, u.global,
|
||||||
a.active, a.users AS viewusers, a.editor, `+"a.`admin`"+`, a.analytics
|
a.active, a.users AS viewusers, a.editor, a.admin, a.analytics
|
||||||
FROM user u, account a
|
FROM user u, account a
|
||||||
WHERE a.orgid=? AND u.refid = a.userid AND a.active=1 AND u.refid IN (
|
WHERE a.orgid=? AND u.refid = a.userid AND a.active=1 AND u.refid IN (
|
||||||
SELECT whoid from permission WHERE orgid=? AND who='user' AND scope='object' AND location='space' AND refid IN(?) UNION ALL
|
SELECT whoid from permission WHERE orgid=? AND who='user' AND scope='object' AND location='space' AND refid IN(?) UNION ALL
|
||||||
|
@ -295,7 +295,7 @@ func (s Scope) MatchUsers(ctx domain.RequestContext, text string, maxMatches int
|
||||||
|
|
||||||
err = s.Runtime.Db.Select(&u,
|
err = s.Runtime.Db.Select(&u,
|
||||||
`SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.lastversion, u.created, u.revised,
|
`SELECT u.id, u.refid, u.firstname, u.lastname, u.email, u.initials, u.password, u.salt, u.reset, u.lastversion, u.created, u.revised,
|
||||||
u.global, a.active, a.editor, `+"a.`admin`"+`, a.users as viewusers, a.analytics
|
u.global, a.active, a.editor, a.admin, a.users AS viewusers, a.analytics
|
||||||
FROM user u, account a
|
FROM user u, account a
|
||||||
WHERE a.orgid=? AND u.refid=a.userid AND a.active=1 `+likeQuery+
|
WHERE a.orgid=? AND u.refid=a.userid AND a.active=1 `+likeQuery+
|
||||||
`ORDER BY u.firstname,u.lastname LIMIT `+strconv.Itoa(maxMatches),
|
`ORDER BY u.firstname,u.lastname LIMIT `+strconv.Itoa(maxMatches),
|
||||||
|
|
|
@ -42,7 +42,7 @@ func main() {
|
||||||
rt.Product = env.ProdInfo{}
|
rt.Product = env.ProdInfo{}
|
||||||
rt.Product.Major = "1"
|
rt.Product.Major = "1"
|
||||||
rt.Product.Minor = "64"
|
rt.Product.Minor = "64"
|
||||||
rt.Product.Patch = "1"
|
rt.Product.Patch = "2"
|
||||||
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
|
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
|
||||||
rt.Product.Edition = "Community"
|
rt.Product.Edition = "Community"
|
||||||
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)
|
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue