Skip to content
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

Set header order #976

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
another test
  • Loading branch information
medou-boushab committed Jun 6, 2024
commit 7b3ead2feaf01c3541b4526993dc8b748f71ef16
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ module.exports = function (grunt) {
name: 'main',
generateSourceMaps: true,
preserveLicenseComments: false,
optimize: 'uglify2',
optimize: 'none',
paths: {
'proactive/config': 'empty:'
}
Expand Down
2 changes: 1 addition & 1 deletion test/json-server-data/mock-scheduler-rest.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ server.get('/rest/studio/connected', function (req, res, next) {

server.get('/rest/common/permissions/portals/studio', function (reqq, ress, nextt) {
console.log('CHECK FOR PERMISSION');
ress.status(200);
ress.setHeader('content-type', 'application/json');
ress.status(200);
ress.write('true');
ress.end();
});
Expand Down