Skip to content

Commit

Permalink
We are ori-community now
Browse files Browse the repository at this point in the history
  • Loading branch information
timoschwarzer authored Jan 30, 2023
1 parent 1bde3f3 commit c0aae82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ server.get('/releases', async (req, res) => {
res.send(await cache.retrieve('releases', RELEASES_TTL, async () => {
const octokit = new Octokit
return (await octokit.rest.repos.listReleases({
owner: 'ori-rando',
repo: 'build',
owner: 'ori-community',
repo: 'rando-build',
per_page: 100,
})).data
}))
Expand All @@ -26,7 +26,7 @@ server.get('/motd/wotw', async (req, res) => {
res.send(await cache.retrieve('wotw-motd', MOTD_TTL, async () => {
const octokit = new Octokit
const base64Content = (await octokit.rest.repos.getContent({
owner: 'ori-rando',
owner: 'ori-community',
repo: 'motd',
path: 'motd.wotw.html'
})).data.content
Expand Down

0 comments on commit c0aae82

Please sign in to comment.