Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,9 @@
Configure Resource : {{key}}
</accordion-heading>
<div class="col-lg-6 col-md-6 margintop15">
<label for="cftUserName">Instance Username<span class="red">&nbsp;*</span>
<span ng-show="newBlueprintForm.cftUserName.$touched && newBlueprintForm.cftUserName.$invalid" class="inputValidationMsg">Required</span></label>
<input type="text" ng-model="bpCreate.newEnt.cftModelResources[key]" name="cftUserName" class="form-control" required/>
<label for="cftUserName">Instance Username<!--<span class="red">&nbsp;*</span>
<span ng-show="newBlueprintForm.cftUserName.$touched && newBlueprintForm.cftUserName.$invalid" class="inputValidationMsg">Required</span>--></label>
<input type="text" ng-model="bpCreate.newEnt.cftModelResources[key]" name="cftUserName" class="form-control"/>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<span class="cursor pull-right">
Expand Down
1 change: 0 additions & 1 deletion server/app/routes/v1.0/routes_authentication.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ module.exports.setRoutes = function(app) {
if (req.session && req.session.user) {
next();
} else {
//checking for token authentication
var token = req.headers[appConfig.catalystAuthHeaderName];
if (token) {
AuthToken.findByToken(token, function(err, authToken) {
Expand Down