-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgithub-app-manifest-launcher.html
More file actions
20 lines (20 loc) · 1.23 KB
/
github-app-manifest-launcher.html
File metadata and controls
20 lines (20 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>GitHub App Setup</title>
</head>
<body>
<form id="manifest-form" method="post" action="https://github.com/settings/apps/new?state=d0273ad0f13543a0a10bfd64f5d7ba8b">
<input type="hidden" name="manifest" value="{"name":"PullNotes","url":"https://pullnotes.com","callback_urls":["https://pullnotes.com/api/auth/callback/github"],"redirect_url":"https://pullnotes.com/api/auth/callback/github","description":"Simple markdown editor powered by GitHub.","public":false,"default_permissions":{"contents":"write","metadata":"read"},"request_oauth_on_install":false,"setup_on_update":true,"setup_url":"https://pullnotes.com/api/github-app/callback"}" />
<noscript>
<p>JavaScript is disabled. Click continue.</p>
<button type="submit">Continue</button>
</noscript>
</form>
<script>
document.getElementById('manifest-form').submit();
</script>
</body>
</html>