You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/multiuser/user_guide.md
+21-14Lines changed: 21 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -140,13 +140,13 @@ As a regular user, you can:
140
140
- ✅ View your own generation queue
141
141
- ✅ Customize your UI preferences (theme, hotkeys, etc.)
142
142
- ✅ View available models (read-only access to Model Manager)
143
-
- ✅ Access shared boards (based on permissions granted to you) (FUTURE FEATURE)
144
-
- ✅ Access workflows marked as public (FUTURE FEATURE)
143
+
- ✅ View shared and public boards created by other users
144
+
- ✅ View and use workflows marked as shared by other users
145
145
146
146
You cannot:
147
147
148
148
- ❌ Add, delete, or modify models
149
-
- ❌ View or modify other users' boards, images, or workflows
149
+
- ❌ View or modify other users' private boards, images, or workflows
150
150
- ❌ Manage user accounts
151
151
- ❌ Access system configuration
152
152
- ❌ View or cancel other users' generation tasks
@@ -173,7 +173,7 @@ Administrators have all regular user capabilities, plus:
173
173
- ✅ Full model management (add, delete, configure models)
174
174
- ✅ Create and manage user accounts
175
175
- ✅ View and manage all users' generation queues
176
-
- ✅ Create and manage shared boards (FUTURE FEATURE)
176
+
- ✅ View and manage all users' boards, images, and workflows (including system-owned legacy content)
177
177
- ✅ Access system configuration
178
178
- ✅ Grant or revoke admin privileges
179
179
@@ -183,23 +183,30 @@ Administrators have all regular user capabilities, plus:
183
183
184
184
### Image Boards
185
185
186
-
In multi-user model, Image Boards work as before. Each user can create an unlimited number of boards and organize their images and assets as they see fit. Boards are private: you cannot see a board owned by a different user.
186
+
In multi-user mode, each user can create an unlimited number of boards and organize their images and assets as they see fit. Boards have three visibility levels:
187
187
188
-
!!! tip "Shared Boards"
189
-
InvokeAI 6.13 will add support for creating public boards that are accessible to all users.
188
+
- **Private** (default): Only you (and administrators) can see and modify the board.
189
+
- **Shared**: All users can view the board and its contents, but only you (and administrators) can modify it (rename, archive, delete, or add/remove images).
190
+
- **Public**: All users can view the board. Only you (and administrators) can modify the board's structure (rename, archive, delete).
190
191
191
-
The Administrator can see all users Image Boards and their contents.
192
+
To change a board's visibility, right-click on the board and select the desired visibility option.
192
193
193
-
### Going From Multi-User to Single-User mode
194
+
Administrators can see and manage all users' image boards and their contents regardless of visibility settings.
195
+
196
+
### Going From Multi-User to Single-User Mode
194
197
195
198
If an InvokeAI instance was in multiuser mode and then restarted in single user mode (by setting `multiuser: false` in the configuration file), all users' boards will be consolidated in one place. Any images that were in "Uncategorized" will be merged together into a single Uncategorized board. If, at a later date, the server is restarted in multi-user mode, the boards and images will be separated and restored to their owners.
196
199
197
200
### Workflows
198
201
199
-
In the current released version (6.12) workflows are always shared among users. Any workflow that you create will be visible to other users and vice-versa, and there is no protection against one user modifying another user's workflow.
202
+
Each user has their own private workflow library. Workflows you create are visible only to you by default.
203
+
204
+
You can share a workflow with other users by marking it as **shared** (public). Shared workflows appear in all users' workflow libraries and can be opened by anyone, but only the owner (or an administrator) can modify or delete them.
205
+
206
+
To share a workflow, open it and use the sharing controls to toggle its public/shared status.
200
207
201
-
!!! tip "Private and Shared Workflows"
202
-
InvokeAI 6.13 will provide the ability to create private and shared workflows. A private workflow can only be viewed by the user who created it. At any time, however, the user can designate the workflow *shared*, in which case it can be opened on a read-only basis by all logged-in users.
208
+
!!! warning "Preexisting workflows after enabling multi-user mode"
209
+
When you enable multi-user mode for the first time on an existing InvokeAI installation, all workflows that were created before multi-user mode was activated will appear in the **shared workflows** section. These preexisting workflows are owned by the internal "system" account and are visible to all users. Administrators can edit or delete these shared legacy workflows. Regular users can view and use them but cannot modify them.
203
210
204
211
205
212
### The Generation Queue
@@ -330,11 +337,11 @@ These settings are stored per-user and won't affect other users.
330
337
331
338
### Can other users see my images?
332
339
333
-
No, unless you add them to a shared board (FUTURE FEATURE). All your personal boards and images are private.
340
+
Not unless you change your board's visibility to "shared" or "public". All personal boards and images are private by default.
334
341
335
342
### Can I share my workflows with others?
336
343
337
-
Not directly. Ask your administrator to mark workflows as public if you want to share them.
344
+
Yes. You can mark any workflow as shared (public), which makes it visible to all users. Other users can view and use shared workflows, but only you or an administrator can modify or delete them.
Copy file name to clipboardExpand all lines: invokeai/frontend/web/src/features/nodes/components/sidePanel/workflow/WorkflowLibrary/WorkflowLibrarySideNav.tsx
Copy file name to clipboardExpand all lines: invokeai/frontend/web/src/features/nodes/components/sidePanel/workflow/WorkflowLibrary/WorkflowListItem.tsx
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ import InvokeLogo from 'public/assets/images/invoke-symbol-wht-lrg.svg';
0 commit comments