Skip to content

Commit 66e1080

Browse files
committed
Add and Update READMEs. Correct Spelling Errors
1 parent 32fab05 commit 66e1080

File tree

5 files changed

+36
-13
lines changed

5 files changed

+36
-13
lines changed

README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
11
# GitHub Organisation Invitation
22

3-
A web app that can accept a GitHub username and send them an invitation to join a GitHub Organisation.
3+
A web app that can send invitations to GitHub users to join a given GitHub organization. The app uses a valid OAuth access token of an admin user in that GitHub organization to send invitations.
4+
5+
To send an invitation three things must be provided:
6+
1. Name of the GitHub organization.
7+
2. OAuth Access token of an admin in that organization (obtainable in GitHub account settings).
8+
3. Username of the GitHub user to be invited.
9+
10+
The way this app requires the provision of the above mentioned three items, depend on your choice of version to use. Two versions are available and they require different ways of providing the above three items.
11+
12+
1. ## [Node Monolith Server](/node-monolith)
13+
In this version, provide an `org.js` file in the root folder that exports a JSON object containing `name` (organization's name) and `token` properties. Host the node server. In its frontend, a GitHub user can enter their `username` and get invited to your organization. They will receive proper feedback, whether they was successfully invited or not and possible reasons for that.
14+
15+
2. ## [Static Web App](/static-frontend)
16+
In this version, you enter your organization's name on GitHub, an admin's OAuth access token and the username of the GitHub user to be invited, directly in the static frontend of the website and JavaScript will do the invitation. Proper feedback is equally shown directly in the website whether the invitation was successful or not and possible reasons for that.

node-monolith/README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# GitHub Organisation Invitation
1+
# GitHub Organisation Invitation - Monolith Server Version
22

33
A web app that can accept a GitHub username and send them an invitation to join a GitHub Organisation.
44

55
## Add org.js file
6-
Add an org.js file in the root of this repository for this app to work. The file should export the name of the GitHUB organisation to be joined and an OAuth access token.
6+
Add an org.js file in the root of this repository for this app to work. The file should export the name of the GitHub organisation to be joined and an OAuth access token.
77

88
Only admin members of a GitHub organisation can send an invitation to other GitHub users, to join that organisation.
99
The admin member must be authenticated before invitation can be sent. Go to settings in admin's GitHub account and get a new OAuth access token or use an existing token, if you already have one. Create a file in the root of this repository and name it `org.js`.
@@ -18,3 +18,6 @@ module.exports = {
1818
```
1919

2020
`org.js` has been added to .gitignore so that credentials are not committed to Git.
21+
22+
## The FrontEnd
23+
In the home of your app, a GitHub user can enter their `username` and get invited to your organization. They will receive proper feedback, whether they was successfully invited or not and possible reasons for that.

node-monolith/public/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
</head>
1010
<body>
1111
<noscript>
12-
<h2 id="noscript-heading" class="failure">This website requires JavaScript to successfully invite you to the GiHub Organisation. To get invited, enable JavaScript in your browser settings or upgrade or change your browser.</h2>
12+
<h2 id="noscript-heading" class="failure">This website requires JavaScript to successfully invite you to the GitHub Organisation. To get invited, enable JavaScript in your browser settings or upgrade or change your browser.</h2>
1313
</noscript>
1414
<main>
15-
<h1 class="text-center">Github Organisation Invitation</h1>
16-
<p class="text-center" id="intro">Enter your Github Username below to get invited to <span class="org">the</span> GitHub Organisation</p>
15+
<h1 class="text-center">GitHub Organisation Invitation</h1>
16+
<p class="text-center" id="intro">Enter your GitHub Username below to get invited to <span class="org">the</span> GitHub Organisation</p>
1717
<form method="POST" id="invite">
1818
<label>
1919
<input type="text" name="username" minlength="2" placeholder="Username" required>

static-frontend/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# GitHub Organization Invitation - Static Frontend Version
2+
3+
A website that can accepts a GitHub organization's name, an admin's OAuth access token, and the username of a GitHub user, and sends an invitation to the GitHub user to join the GitHub Organization.
4+
5+
In a Github organization, only admin members can send an invitation to other GitHub users, to join that organization. The admin member must be authenticated before invitation can be sent. Go to settings in admin's GitHub account and get a new OAuth access token or use an existing token, if you already have one.
6+
7+
To invite a user, enter the organization's name on GitHub, the OAuth access token and the GitHub username of the user to be invited and invite the user. The website gives feedback telling whether invitation was successful or not and possible reasons why the invitation was not successful.

static-frontend/index.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
77
<link rel="stylesheet" type="text/css" href="styles.css">
8-
<title>Get Invited to the GitHub Organisation</title>
8+
<title>Invite a GitHub user to your GitHub Organization</title>
99
</head>
1010
<body>
1111
<noscript>
1212
<h2 id="noscript-heading" class="failure">This website requires JavaScript to successfully send invitations. For invitations to be sent, enable JavaScript in your browser settings or upgrade or change your browser.</h2>
1313
</noscript>
1414
<main>
15-
<h1 class="text-center">Github Organisation Invitation</h1>
16-
<p class="text-center" id="intro">Enter the name of the Github organisation to which the Github user is to be invited to, the OAuth Access token of an admin in that organisation on whose behalf the invitation is done, and the username of the Github user to be invited.</p>
15+
<h1 class="text-center">GitHub Organization Invitation</h1>
16+
<p class="text-center" id="intro">Enter the name of the GitHub organization to which the Github user is to be invited to, the OAuth Access token of an admin in that organization on whose behalf the invitation is done, and the username of the GitHub user to be invited.</p>
1717
<div id="form-and-message-container">
1818
<form method="POST" id="invite">
1919
<label>
20-
<input type="text" id="org" name="org" minlength="2" placeholder="Github Organisation's Name" required>
21-
<span>Github Organisation's Name</span>
20+
<input type="text" id="org" name="org" minlength="2" placeholder="GitHub Organization's Name" required>
21+
<span>GitHub Organization's Name</span>
2222
</label>
2323
<label>
2424
<input type="text" id="token" name="token" minlength="32" placeholder="Admin's Access token">
2525
<span>Admin's Access token</span>
2626
</label>
2727
<label>
28-
<input type="text" id="username" name="username" minlength="2" placeholder="Github Invitee's Username" required>
29-
<span>Github Invitee's Username</span>
28+
<input type="text" id="username" name="username" minlength="2" placeholder="GitHub Invitee's Username" required>
29+
<span>GitHub Invitee's Username</span>
3030
</label>
3131
<div id="button-container">
3232
<button type="submit">Invite User</button>

0 commit comments

Comments
 (0)