Commit 60b73b48 by Matt Drayer

Merge pull request #8361 from edx/asadiqbal08/SOL-946

SOL-946
parents dc5f6503 815e4080
...@@ -18,10 +18,15 @@ function (_, str, Backbone, BackboneRelational, BackboneAssociations, gettext, C ...@@ -18,10 +18,15 @@ function (_, str, Backbone, BackboneRelational, BackboneAssociations, gettext, C
var Certificate = Backbone.RelationalModel.extend({ var Certificate = Backbone.RelationalModel.extend({
idAttribute: "id", idAttribute: "id",
defaults: { defaults: {
// Metadata fields currently displayed in web forms
course_title: '',
org_logo_path: '',
// Metadata fields not currently displayed in web forms
name: 'Name of the certificate', name: 'Name of the certificate',
description: 'Description of the certificate', description: 'Description of the certificate',
course_title: 'Title of the course',
org_logo_path: '', // Internal-use only, not displayed in web forms
version: 1, version: 1,
is_active: false is_active: false
}, },
......
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