Skip to content

Commit

Permalink
lint; sqlite (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquigley committed Dec 11, 2024
1 parent 2f14e97 commit 8195736
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions controller/store/sql/sqlite3/030_v0_4_45_organizations.sql
Original file line number Diff line number Diff line change
@@ -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),
Expand All @@ -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,
Expand Down

0 comments on commit 8195736

Please sign in to comment.