feat: Adds link sharing document.
All checks were successful
CI / release (push) Successful in 6m5s

This commit is contained in:
2025-04-08 10:37:53 -04:00
parent f7d0018314
commit da27216fc1
7 changed files with 53 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
import HTML
/// Represents homepage link configuration.
struct HomeLink {
let icon: String
let title: String
@@ -14,6 +15,7 @@ struct HomeLink {
}
extension HomeLink {
/// Create an internal link (opens in the same tab).
static func `internal`(
_ title: String,
icon: String,
@@ -23,6 +25,7 @@ extension HomeLink {
self.init(icon: icon, title: title, description: description, href: href, linkType: .internal)
}
/// Create an external link (opens in a different tab).
static func external(
_ title: String,
icon: String,

View File

@@ -0,0 +1,39 @@
---
date: 2025-04-08
tags: how-to, nas
---
# Link Sharing
In this article, I'll share how you can share links from our internal NAS with
someone.
## 1. Open the Web Console
Sharing links is done through the web console of the NAS. You can access the web
console by clicking the `Your UniFI Drive` button in the `Unifi Identitiy`
application in your toolbar.
![link-share](/static/img/linkshare.identity.png)
## 2. Select File to Share
Next, you will want to navigate to the file you would like to share and select
the three dots to the far right of the file and select `Share Link`.
This will open a menu that allows you to optionally set the expiration for the
link, a limit on how many times the file can be accessed, and a password
required to view the file. Once done you can click on `Create and Copy Link`.
![settings](/static/img/linkshare.share.settings.png)
## 3. Manage Shared Links
You can manage the shared link in the same way by navigating to the file you've
shared and selecting `Share Link`, as we did above. Or you can access from the
home dashboard by clicking `Manage Links` in the top right of the home page.
The `Manage Links` section gives you a list of all the files you've shared using
links. You can reconfigure the link there or delete it.
![manage](/static/img/linkshare.manage.png)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -151,7 +151,7 @@ article a:hover {
}
article code {
@apply bg-amber-700;
@apply bg-violet-600;
}
article ol {

File diff suppressed because one or more lines are too long