Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-02-25 | Copyright bump for 2022 | Sean King | |
2021-01-13 | Bump Copyright to 2021 | Haelwenn (lanodan) Monnier | |
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;' | |||
2020-11-01 | Use Pleroma.HTTP instead of Tesla | Ekaterina Vaartis | |
Closes #2275 As discovered in the issue, captcha used Tesla.get instead of Pleroma.HTTP. I've also grep'ed the repo and changed the other place where this was used. | |||
2020-10-13 | other files consistency | Alexander Strizhakov | |
2020-07-29 | Expose seconds_valid in Pleroma Captcha API endpoint | Mark Felder | |
2020-04-29 | Change Pleroma.CaptchaTest to be a regular module instead of GenServer | Egor Kislitsyn | |
2020-04-29 | Add tests for account registration with captcha enabled and improve errors | Egor Kislitsyn | |
2020-03-03 | Update Copyrights | Mark Felder | |
2020-03-02 | Bump copyright years of files changed after 2020-01-07 | Haelwenn (lanodan) Monnier | |
Done via the following command: git diff fcd5dd259a1700a045be902b43391b0d1bd58a5b --stat --name-only | xargs sed -i '/Pleroma Authors/c# Copyright © 2017-2020 Pleroma Authors <https:\/\/pleroma.social\/>' | |||
2020-02-25 | Fix Dialyzer warnings | Egor Kislitsyn | |
2020-02-24 | Captcha: return invalid when answer_data is nil | Haelwenn (lanodan) Monnier | |
2019-12-12 | Add native captcha and enable it by default. | Egor Kislitsyn | |
2019-08-14 | use default child_specs | stwf | |
2019-07-10 | Wrap error messages into gettext helpers | Egor Kislitsyn | |
2019-05-13 | Switch to Jason over Poison | Mark Felder | |
2019-03-13 | [Credo] fix Credo.Check.Readability.MaxLineLength | Haelwenn (lanodan) Monnier | |
2019-03-13 | [Credo] Remove parentesis on argument-less functions | Haelwenn (lanodan) Monnier | |
2019-02-09 | de-group alias/es | Haelwenn (lanodan) Monnier | |
2019-02-09 | Credo fixes: alias grouping/ordering | Haelwenn (lanodan) Monnier | |
2019-01-03 | Merge branch 'captcha' into 'develop' | rinpatch | |
Make captcha (kocaptcha) stateless See merge request pleroma/pleroma!585 | |||
2018-12-31 | update copyright years to 2019 | William Pitcock | |
2018-12-29 | Remove the debugging IO.inspect | vaartis | |
2018-12-27 | Up captcha timer to 60 secs again, save used captchas in cachex | Ekaterina Vaartis | |
2018-12-23 | add license boilerplate to pleroma core | William Pitcock | |
2018-12-22 | Move the encryption out of kocaptcha into general captcha module | Ekaterina Vaartis | |
That way there won't be a need to reimplement it for other captcha services | |||
2018-12-21 | Make captcha (kocaptcha) stateless | Ekaterina Vaartis | |
Also rename seconds_retained to seconds_valid since that's how it is now. Put it down from 180 to 20 seconds. The answer data is now stored in an encrypted text transfered to the client and back, so no ETS is needed | |||
2018-12-17 | Use :ets.match_delete to delete old captchas | vaartis | |
2018-12-16 | Clean captchas up periodically, not schedule it after theyre created | Ekaterina Vaartis | |
2018-12-16 | Change minutes_retained config to seconds_retained | Ekaterina Vaartis | |
2018-12-16 | Add a configurable auto-cleanup for captchas | Ekaterina Vaartis | |
2018-12-15 | Replace HTTPoison with Tesla for kocaptha | Ekaterina Vaartis | |
2018-12-15 | Formatting fixes | Ekaterina Vaartis | |
2018-12-15 | Separate captcha implementation into a behaviour and use it | Ekaterina Vaartis | |