lint; sqlite (#537)

This commit is contained in:
Michael Quigley 2024-12-11 12:57:34 -05:00
parent 2f14e9798f
commit 8195736d95
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
## v0.4.45
FEATURE: Minimal support for "organizations". Site admin API endpoints provided to create, list, and delete "organizations". Site admin API endpoints provided to add, list, and remove "organization members" (zrok accounts) with the ability to mark accounts as a "organization admin". API endpoints provided for organization admins to list the members of their organizations, and to also see the overview (environments, shares, and accesses) for any account in their organization. API endpoint for end users to see which organizations their account is a member of. (https://github.com/openziti/zrok/issues/537)
FEATURE: Minimal support for "organizations". Site admin API endpoints provided to create, list, and delete "organizations". Site admin API endpoints provided to add, list, and remove "organization members" (zrok accounts) with the ability to mark accounts as a "organization admin". API endpoints provided for organization admins to list the members of their organizations, and to also see the overview (environments, shares, and accesses) for any account in their organization. API endpoint for end users to see which organizations their account is a member of (https://github.com/openziti/zrok/issues/537)
CHANGE: briefly mention the backend modes that apply to public and private share concepts

View File

@ -1,7 +1,7 @@
-- +migrate Up
create table organizations (
id serial primary key,
id integer primary key,
token varchar(32) not null,
description varchar(128),
@ -14,7 +14,7 @@ create table organizations (
create index organization_token_idx on organizations(token);
create table organization_members (
id serial primary key,
id integer primary key,
organization_id integer references organizations(id) not null,
account_id integer references accounts(id) not null,