-
Notifications
You must be signed in to change notification settings - Fork 868
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
separate default template for easy customization #811
Conversation
|
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
exports.preSteps = function (model) { | ||
return model; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question, how about process model directly and not return model itself? #Pending
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As discussed, remain this as user may want to return a new model.
In reply to: 84629091 [](ancestors = 84629091)
@@ -2,8 +2,13 @@ | |||
|
|||
var mrefCommon = require('./ManagedReference.common.js'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what about require('./ManageReference.extension.js');
? #Resolved
|
#662
provide 2 functions for each type: preSteps() and postSteps, which defined in type.html.primary.extension.js. Users can change this file to modify the model.
@chenkennt @vwxyzh @hellosnow @ansyral @qinezh