Skip to content

Instantly share code, notes, and snippets.

View skemuel007's full-sized avatar

Stanley-Kemuel Lloyd Salvation skemuel007

View GitHub Profile
@skemuel007
skemuel007 / main.js
Created November 25, 2024 03:06 — forked from jozefhruska/main.js
Auth0 Action - Account linking
/**
* Handler that will be called during the execution of a PostLogin flow.
*
* @param {Event} event - Details about the user and the context in which they are logging in.
* @param {PostLoginAPI} api - Interface whose methods can be used to change the behavior of the login.
*/
exports.onExecutePostLogin = async (event, api) => {
const axios = require("axios");
const ManagementClient = require("auth0").ManagementClient;
@skemuel007
skemuel007 / .NET6Migration.md
Created May 31, 2023 20:51 — forked from davidfowl/.NET6Migration.md
.NET 6 ASP.NET Core Migration
@skemuel007
skemuel007 / account.component.html
Created June 25, 2019 03:03 — forked from yubing24/account.component.html
Angular Material Side Navigation with Expandable Menus
<mat-toolbar color="accent">
<button mat-icon-button matTooltip="Application Menu" (click)="sidenav.toggle()">
<mat-icon>settings</mat-icon>
</button>
Account Settings
<span style="flex: 1 1 auto;"></span>
<div>
<button mat-icon-button matTooltip="Switch Apps">
<mat-icon>apps</mat-icon>
</button>