summaryrefslogtreecommitdiff
path: root/test/web/twitter_api/twitter_api_controller_test.exs
AgeCommit message (Collapse)Author
2019-04-02replace `Repo.get_by(User, nickname: nickname)` with ↵Egor Kislitsyn
`User.get_by_nickname(nickname)` in tests
2019-04-02replace `Repo.get_by(User, ap_id: ap_id)` with `User.get_by_ap_id(ap_id)`Egor Kislitsyn
2019-04-02change `Repo.get(Activity, id)` => `Activity.get_by_id(id)` in testsEgor Kislitsyn
2019-04-02change `Repo.get(User, id)` => `User.get_by_id(id)`Egor Kislitsyn
2019-03-26Credo is upset about me not remembering the alphabetrinpatch
2019-03-26Fix formattingrinpatch
2019-03-26Remove ActivityRepresenterrinpatch
2019-03-13[Credo] fix Credo.Check.Readability.AliasOrderHaelwenn (lanodan) Monnier
2019-03-13[Credo] Fix the warningsHaelwenn (lanodan) Monnier
2019-03-04Fix DM visibility for blocking userseugenijm
2019-03-03Remove follow_request_count as it's not needed for FE anymore.eugenijm
MastoFE uses `GET /api/v1/follow_requests` and PleromaFE uses `GET /api/pleroma/friend_requests` which they query on the initial page load.
2019-03-01use commonapi.post instead of activitybulderrinpatch
2019-03-01[#675] Do not show DMs in mentions timelinerinpatch
2019-02-20[#468] More OAuth scopes-specific tests.Ivan Tashkinov
2019-02-19[#468] Added OAuth scopes-specific tests.Ivan Tashkinov
2019-02-18Merge branch 'feature/add-oauth-tokens-endpoint' into 'develop'kaniini
Add OAuth tokens endpoint See merge request pleroma/pleroma!805
2019-02-18Merge branch 'follow-request-count' into 'develop'kaniini
Follow request count See merge request pleroma/pleroma!817
2019-02-18Fix testMaxim Filippov
2019-02-16Add option to return all friends in twitter api.lain
Mainly useful for user export.
2019-02-15Add logic for keeping follow_request_count up-to-date on the `follow`,eugenijm
`approve_friend_request`, and `deny_friend_request` actions. Add follow_request_count to the user view.
2019-02-13Add revoke tokenMaxim Filippov
2019-02-13Add OAuth tokens endpointMaxim Filippov
2019-02-11test: de-group alias/esHaelwenn (lanodan) Monnier
2019-02-06hide_followings was renamed to hide_followers in the FE, but never synced up ↵Mark Felder
in the BE This was a dirty regex replace which worked on my server
2019-02-06Allow to configure visibility for admin and moderator badgeseugenijm
2019-02-03Split hide_network into hide_followers & hide_followings (fixed)Maxim Filippov
2019-02-01Revert "Merge branch 'feature/split-hide-network' into 'develop'"kaniini
This reverts merge request !733
2019-01-28FormatMaxim Filippov
2019-01-28Split hide_network into hide_followers & hide_followingsMaxim Filippov
2019-01-23Flake Ids for Users and Activitieshref
2019-01-20Merge branch 'i1t/pleroma-477_user_search_improvements' into 'develop'lambda
I1t/pleroma 477 user search improvements See merge request pleroma/pleroma!685
2019-01-18[#477] User: FTS and trigram search results mixing (to handle misspelled ↵Ivan Tashkinov
requests).
2019-01-16tests: fixupWilliam Pitcock
2019-01-15[#477] Added FTS index for `users`. Fixed failing test.Ivan Tashkinov
2019-01-10Merge branch 'twapi-follower-pagination' into 'develop'kaniini
Twapi follower pagination See merge request pleroma/pleroma!648
2019-01-09Add integer casts.lain
2019-01-09TwitterAPI: Add follower/following pagination.lain
2019-01-09Add Twitter API for the pinned statusesEgor Kislitsyn
``` # Only return statuses that have been pinned GET /api/statuses/user_timeline.json?pinned=true # Pin POST /api/statuses/pin/:id # Unpin POST /api/statuses/unpin/:id ```
2018-12-29Merge branch '483_blocks_import_export' into 'develop'kaniini
[#483] Blocked users list import & export Closes #483 See merge request pleroma/pleroma!603
2018-12-28[#483] Blocked users export for TwitterAPI.Ivan Tashkinov
2018-12-27Fix Twitter timelines for private instancesVyr Cossont
2018-12-26Implement exclude_reblogs and include_rtsVyr Cossont
2018-12-23tests: add legal boilerplateWilliam Pitcock
2018-12-20[#114] Allowed unconfirmed users to authenticate if ↵Ivan Tashkinov
:account_activation_required is disabled prior to confirmation. Ensured that no confirmation emails are sent if :account_activation_required is not true. Adjusted tests.
2018-12-20[#114] Added :user_id component to email confirmation path to improve the ↵Ivan Tashkinov
security. Added tests for `confirm_email` action.
2018-12-19[#114] User.Info: renamed `confirmation_update` to `confirmation_changeset`.Ivan Tashkinov
2018-12-19[#114] User.Info: renamed `confirmation_update` to `confirmation_change`.Ivan Tashkinov
2018-12-18[#114] Added email confirmation resend action. Added testsIvan Tashkinov
for registration, authentication, email confirmation, confirmation resending. Made admin methods create confirmed users.
2018-12-13[#114] Removed `email_invite` implementation (to be addressed separately).Ivan Tashkinov
2018-12-13[#114] Initial implementation of user email invitations.Ivan Tashkinov