code-corps-api
code-corps-api copied to clipboard
Elixir/Phoenix API for Code Corps.
# Problem We want to add an `InvitedUser` with the following attributes: - `email` - string; required - `role` - string; optional - `name` - string; optional And the following...
# Problem I am currently unable to register a new GitHub app for local development. Detail the problem here, including any possible solutions. The form is not submitting, it appears...
# Problem If we're lacking the proper ENV variables for getting an integrations token, we'll get the following for code that tries to exchange our application credentials for a token:...
# Track anon Users that register The work on #1105 and #1038 gets us to track core actions, among the actions, we track when an installation is created from GitHub,...
# What's in this PR? In this PR We are tracking when installations are created from GitHub, This enables us to track installations that don't begin with the Code Corps...
Quite a few dependencies in the `mix.exs` are out of date, including `phoenix` and `stripity_stripe`. I built [Dependabot](https://dependabot.com) to automatically create dependency update PRs when new versions are released. It's...
# What's in this PR? This PR adds conversation parts when a conversation is updated with a status of "closed" or "reopened" ## References Fixes #1320 , #1319 Progress on:...
# Problem Here are the remaining core actions we need to track: - [ ] Reordered Task in List - [ ] Connected GitHub App Installation to Project Some we...
# Problem `GitHub.Sync.pull_request_event/1` is currently completely untested. Since we want to unit test it's individual elements to, it should suffice to test each possible outcome of the transaction performed by...
# Problem If a conversation is updated with `status` of `"reopened"`, then we should create a conversation part with a `part_type` of `"reopened"`. Blocked by #1318. Could probably be done...