mirror of
https://github.com/LukeHagar/Anchor.git
synced 2025-12-10 12:27:47 +00:00
43 lines
1.2 KiB
Svelte
43 lines
1.2 KiB
Svelte
<script lang="ts">
|
|
const resourcelinks: { label: string; href: string }[] = [
|
|
{
|
|
label: '💁 Developer Community',
|
|
href: 'https://developer.sailpoint.com/discuss/'
|
|
},
|
|
{ label: '📖 API Documentation', href: 'https://developer.sailpoint.com/idn/api/v3' },
|
|
{ label: '💻 CLI Documentation', href: 'https://developer.sailpoint.com/idn/tools/cli' },
|
|
{
|
|
label: '🔌 Connector Reference',
|
|
href: 'https://community.sailpoint.com/t5/IdentityNow-Connectors/IdentityNow-Connectors/ta-p/80019'
|
|
},
|
|
{
|
|
label: '🧮 Transform Guides',
|
|
href: 'https://community.sailpoint.com/t5/Search/bd-p/search?searchString=%22IdentityNow+Transforms+-%22'
|
|
},
|
|
{
|
|
label: '🧭 Compass',
|
|
href: 'https://community.sailpoint.com'
|
|
},
|
|
{
|
|
label: '🔒 User Level Access Matrix',
|
|
href: 'https://documentation.sailpoint.com/saas/help/common/users/user_level_matrix.html'
|
|
}
|
|
];
|
|
</script>
|
|
|
|
<h1 class="text-center">Resources</h1>
|
|
<ul class="flex flex-col">
|
|
{#each resourcelinks as link}
|
|
<li class="listbox-item">
|
|
<a
|
|
class="hover:underline text-center hover:text-tertiary-600"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
href={link.href}
|
|
>
|
|
{link.label}
|
|
</a>
|
|
</li>
|
|
{/each}
|
|
</ul>
|