- 02 May, 2016 1 commit
-
-
More accurately, this creates a 4th shard because the last shard is always the default.
Ben Patterson committed
-
- 28 Apr, 2016 1 commit
-
-
More accurately, this creates a 4th shard because the last shard is always the default.
Ben Patterson committed
-
- 30 Mar, 2016 1 commit
-
-
MA-1998 Install and configure django_oauth_toolkit to coexist with existing oauth libraries.
J. Cliff Dyer committed
-
- 25 Mar, 2016 1 commit
-
-
TNL-2444
muzaffaryousaf committed
-
- 14 Mar, 2016 1 commit
-
-
TNL-4243
muzaffaryousaf committed
-
- 08 Mar, 2016 1 commit
-
-
TNL-4164
muzaffaryousaf committed
-
- 24 Feb, 2016 7 commits
-
-
TNL-4043
muhammad-ammar committed -
TNL-4108
muzaffaryousaf committed -
TNL-2816
muhammad-ammar committed -
muhammad-ammar committed
-
TNL-4012
muzaffaryousaf committed -
TNL-3908
muhammad-ammar committed -
TNL-3840
muhammad-ammar committed
-
- 22 Dec, 2015 1 commit
-
-
- Remove escaping in display_name_with_default - Move escaped version to deprecated display_name_with_default_escaped - Does not include any other changes to remove double-escaping Thanks to agaylard who initiated this work: https://github.com/edx/edx-platform/pull/10756 TNL-3425
Robert Raposa committed
-
- 09 Dec, 2015 1 commit
-
-
Ned Batchelder committed
-
- 29 Oct, 2015 1 commit
-
-
ECOM-2578
zubair-arbi committed
-
- 17 Jun, 2015 1 commit
-
-
Carlos de la Guardia committed
-
- 03 Jun, 2015 1 commit
-
-
Daniel Friedman committed
-
- 02 Jun, 2015 2 commits
-
-
Diana Huang committed
-
Andy Armstrong committed
-
- 19 May, 2015 1 commit
-
-
TNL-2172
cahrens committed
-
- 17 Mar, 2015 1 commit
-
-
Ned Batchelder committed
-
- 13 Mar, 2015 1 commit
-
-
This new endpoint is intended to replace enrollment API call used on the login+registration page. Instead of directly enrolling students, the view will contact the external e-commerce API (Oscar) to create a new order. Oscar will be responsible for completing the order and enrolling the student. This behavior will only apply to course modes with associated SKUs. All other course mode enrollments will be processed directly by LMS.
Clinton Blackburn committed
-
- 09 Feb, 2015 1 commit
-
-
cahrens committed
-
- 04 Feb, 2015 2 commits
-
-
The existing pattern of using `override_settings(MODULESTORE=...)` prevented us from having more than one layer of subclassing in modulestore tests. In a structure like: @override_settings(MODULESTORE=store_a) class BaseTestCase(ModuleStoreTestCase): def setUp(self): # use store @override_settings(MODULESTORE=store_b) class ChildTestCase(BaseTestCase): def setUp(self): # use store In this case, the store actions performed in `BaseTestCase` on behalf of `ChildTestCase` would still use `store_a`, even though the `ChildTestCase` had specified to use `store_b`. This is because the `override_settings` decorator would be the innermost wrapper around the `BaseTestCase.setUp` method, no matter what `ChildTestCase` does. To remedy this, we move the call to `override_settings` into the `ModuleStoreTestCase.setUp` method, and use a cleanup to remove the override. Subclasses can just defined the `MODULESTORE` class attribute to specify which modulestore to use _for the entire `setUp` chain_. [PLAT-419]
Calen Pennington committed -
Calen Pennington committed
-
- 19 Jan, 2015 1 commit
-
-
Tim Babych committed
-
- 14 Jan, 2015 1 commit
-
-
Co-Authored-By: Jean-Michel Claus <jmc@edx.org> Co-Authored-By: Brian Talbot <btalbot@edx.org> Co-Authored-By: Tim Babych <tim@edx.org> Co-Authored-By: Oleg Marshev <oleg@edx.org> Co-Authored-By: Chris Rodriguez <crodriguez@edx.org>
polesye committed
-