Commit eeadf0ba by Victor Shnayder

Let policies be stored in policies/{url_name}/policy.json

* still backcompat with old mode
parent 9f23e437
...@@ -243,8 +243,13 @@ class XMLModuleStore(ModuleStoreBase): ...@@ -243,8 +243,13 @@ class XMLModuleStore(ModuleStoreBase):
url_name = course_data.get('url_name', course_data.get('slug')) url_name = course_data.get('url_name', course_data.get('slug'))
if url_name: if url_name:
policy_path = self.data_dir / course_dir / 'policies' / '{0}.json'.format(url_name) old_policy_path = self.data_dir / course_dir / 'policies' / url_name / 'policy.json'
policy = self.load_policy(policy_path, tracker) policy = self.load_policy(old_policy_path, tracker)
# VS[compat]: remove once courses use the policy dirs.
if policy == {}:
old_policy_path = self.data_dir / course_dir / 'policies' / '{0}.json'.format(url_name)
policy = self.load_policy(old_policy_path, tracker)
else: else:
policy = {} policy = {}
# VS[compat] : 'name' is deprecated, but support it for now... # VS[compat] : 'name' is deprecated, but support it for now...
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment