about summary refs log tree commit diff
AgeCommit message (Collapse)Author
2016-03-20Writing out more tests, fixed some bugsEugen Rochko
2016-03-19On following/followers pages, show most recent firstEugen Rochko
2016-03-19Fix for incoming favouritesEugen Rochko
2016-03-19Strip out HTML in plain text notification e-mails. Oh, and fix #14Eugen Rochko
2016-03-19Adding e-mail notifications about mentions, follows, favourites and reblogs. ↵Eugen Rochko
Fixing another mention recording bug
2016-03-19Adding letter opener for development and Rack::Attack for future rate ↵Eugen Rochko
limiting implementations
2016-03-19Improving account grid cards layout for longer usernames and notesEugen Rochko
2016-03-19Adding public following and followers pages, fix #3Eugen Rochko
2016-03-19Removing some unused gems, adding pagination to profiles, fix #10Eugen Rochko
2016-03-19Adding more test stubsEugen Rochko
2016-03-19Turns out that replies don't have to have the type comment. Changed handlingEugen Rochko
of those to depend on presence of <thr:in-reply-to /> instead
2016-03-19Adding section on updating to the latest versionEugen Rochko
[ci skip]
2016-03-19Use FanOutOnWriteService AFTER processing mentionsEugen Rochko
2016-03-19TIL a return from a block seems to return from the whole method rather thanEugen Rochko
the block, even though the last line of a block is an implicit return. I am confused to say the least
2016-03-19Fix #13, Atom feeds now contain formatted post contentEugen Rochko
2016-03-19Fix more subtle bugs with first_or_createEugen Rochko
2016-03-18Fixed ANOTHER first_or_create bug. Seriously who came up with that API smhEugen Rochko
2016-03-18Removing autogenerated test stubs that were not neededEugen Rochko
2016-03-18Updating Travis CI file to setup the test environment correctlyEugen Rochko
2016-03-18Fix typo on /api/accounts/:id/statuses, fix potential case-sensitivity issueEugen Rochko
when registering incoming status mentions, add Travis CI file
2016-03-18Adding faviconEugen Rochko
2016-03-17Fix #2, add rake task for PuSH-unsubscribing from remote users who have noEugen Rochko
local followers. Remote users' usernames SHOULD be case-sensitive
2016-03-16Include AtomBuilderHelper (which declared url_for_target) to all servicesEugen Rochko
2016-03-16Fix error when unfollowing somebody who wasn't followed in the first placeEugen Rochko
2016-03-16Fixing small bug with FollowRemoteAccountService usageEugen Rochko
2016-03-16Fix unfollowsEugen Rochko
2016-03-16Access tokens no longer expire, case-insensitive local username validation, ↵Eugen Rochko
as well as case-insensitive Webfinger look-up
2016-03-16Adjusted todo listEugen Rochko
2016-03-16Improved readmeEugen Rochko
2016-03-16Fixing the docker container setup (with assets compilation &co)Eugen Rochko
2016-03-16Adding e-mail configurationEugen Rochko
2016-03-16Adding CSS for form errors, adding missing indicesEugen Rochko
2016-03-16Validations for local profilesEugen Rochko
2016-03-16Deleting statuses, deletion propagationEugen Rochko
2016-03-16Respect "delete" verb on remote feedsEugen Rochko
2016-03-14Ignore future .env files - those should not be committed to VC! Nor be part ↵Eugen Rochko
of docker containers
2016-03-14Adding a docker-compose template for running Mastodon easilyEugen Rochko
2016-03-14Bind oauth applications to usersEugen Rochko
2016-03-14Customizing the last of doorkeeper views, adding CSS for dashboard formsEugen Rochko
2016-03-12Adding simple_form, adding profile settings, header imageEugen Rochko
2016-03-12Customized more doorkeeper views, only logged in users can create oauth appsEugen Rochko
2016-03-12Adding config for puma, dashboard layout, fixing some queriesEugen Rochko
2016-03-11Improving feed queries, switching API to doorkeeper authenticationEugen Rochko
2016-03-11Customizing doorkeeper views for authorizing appEugen Rochko
2016-03-11Adding Mastodon logoEugen Rochko
2016-03-08Distrubute statuses as a fan-out-on-write system, with optional precomputingEugen Rochko
2016-03-07API methods for retrieving home and mentions timelinesEugen Rochko
2016-03-07Adding API for favouriting a statusEugen Rochko
2016-03-07Improving how the API responses lookEugen Rochko
2016-03-07Adding doorkeeper, adding a REST APIEugen Rochko
POST /api/statuses Params: status (text contents), in_reply_to_id (optional) GET /api/statuses/:id POST /api/statuses/:id/reblog GET /api/accounts/:id GET /api/accounts/:id/following GET /api/accounts/:id/followers POST /api/accounts/:id/follow POST /api/accounts/:id/unfollow POST /api/follows Params: uri (e.g. user@domain) OAuth authentication is currently disabled, but the API can be used with HTTP Auth.