summaryrefslogtreecommitdiff
path: root/app/models/spam_log.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-01-231-0/+4
|
* Inherit from ApplicationRecord instead of ActiveRecord::BaseNick Thomas2019-03-281-1/+1
|
* Enable frozen string in app/models/*.rbrepo-forks/gitlab-ce-frozen-string-enable-app-modelsgfyoung2018-07-261-0/+2
| | | | Partially addresses #47424.
* Refactor the DeleteUserWorkerNick Thomas2017-06-051-2/+1
|
* Use DeleteUserWorker for removing users via spam logssh-use-delete-worker-spam-logsStan Hu2017-04-171-2/+2
| | | | | Before deleting a user via a SpamLog would just call `user.destroy`, which may omit other things that need to be cleaned up.
* Allow `SpamLog` to be submitted as hamPatricio Cano2016-08-151-0/+4
| | | | | - Added `submitted_as_ham` to `SpamLog` to mark which logs have been submitted to Akismet. - Added routes and controller action.
* Remove the annotate gem and delete old annotationsJeroen van Baarsen2016-05-091-17/+0
| | | | | | | | | In 8278b763d96ef10c6494409b18b7eb541463af29 the default behaviour of annotation has changes, which was causing a lot of noise in diffs. We decided in #17382 that it is better to get rid of the whole annotate gem, and instead let people look at schema.rb for the columns in a table. Fixes: #17382
* Annotate the modelsZeger-Jan van de Weg2016-05-061-0/+17
|
* Refactor Admin::SpamLogsController to block user before destroyingDouglas Barbosa Alexandre2016-02-021-0/+5
|
* Use truncate helper on spam logs listDouglas Barbosa Alexandre2016-02-021-8/+0
|
* Support Akismet spam checking for creation of issues via APIStan Hu2016-02-021-0/+13
Currently any spam detected by Akismet by non-members via API will be logged in a separate table in the admin page. Closes #5612