summaryrefslogtreecommitdiff
path: root/src/mailman/rest/docs/domains.rst (follow)
Commit message (Collapse)AuthorAgeFilesLines
* New template system. Closes #249Barry Warsaw2016-07-161-29/+9
| | | | | The new template system is introduced for API 3.1. See ``src/mailman/rest/docs/templates.rst`` for details.
* Complete the port to Falcon 1.0.Barry Warsaw2016-04-021-0/+4
|
* Add lots of test for various bits of domain owners.Barry Warsaw2015-04-061-11/+29
| | | | | | | | | | A little refactoring of list_of_str() into list_of_strings_validator() which is now put in the validators.py module and used in several places. Python 3 super() style. Add some code and tests to catch <domain>/owners references when <domain> doesn't exist.
* Checkpointing:Barry Warsaw2015-04-061-4/+72
| | | | | | * Cleanups. * Updates to domains and users. * Allow is_server_owner to be PUT.
* add tests, fix docs, remove contact_addressAbhilash Raj2015-03-281-25/+8
|
* All the REST tests pass.Barry Warsaw2014-12-151-8/+0
|
* Domains are ported to falcon.Barry Warsaw2014-08-131-7/+0
|
* * You can now PUT and PATCH on user resources to change the user's displayBarry Warsaw2012-09-221-2/+2
| | | | | | | | | | | | | | name or password. For passwords, you pass in the clear text password and Mailman will hash it before storing. Also: * Major refactoring of validators for PUT and PATCH. Pull the common logic out of configuration.py and put it in a PatchValidator class in helpers.py. Also move GetterSetter to helpers.py * Add new exception classes RESTError, UnknownPATCHRequestError, ReadOnlyPATCHRequestError. These are used in the PatchValidator. * Added Validator.update() which works nicely for PATCH and PUT.
* * Mailing list resources now have a `member_count` attribute which gives theBarry Warsaw2012-03-151-0/+2
|\ | | | | | | number of subscribed members. Given by Toshio Kuratomi.
| * Fix up doctests for the addition of volume and member_count to the rest api ↵toshio2012-03-151-1/+1
| | | | | | | | lists
* | Schema change. After discussion at Pycon, we decided to change "real_name" toBarry Warsaw2012-03-151-0/+1
|/ | | | | | | | | | | "display_name" across the board. * `IMailingList.real_name` -> `IMailingList.display_name` * `IUser.real_name` -> `IUser.display_name` * `IAddress.real_name` -> `IAddress.display_name` * Schema changes: - real_name -> display_name (mailinglist, user, address)
* * New REST resource http://.../<domain>/lists can be GETed in order to findBarry Warsaw2011-08-301-0/+34
|\ | | | | | | | | all the mailing lists in a specific domain (LP: #829765). Given by Stephen A. Goss.
| * merged changes to main branchStephen A. Goss2011-08-231-0/+43
|/
* Rename IDomain.email_host to .mail_host for consistency. Similarly in theBarry Warsaw2011-08-221-0/+210
REST API. (LP: #831660)