Skip to content

Commit

Permalink
Moved sql templates out of private
Browse files Browse the repository at this point in the history
  • Loading branch information
mollybsmith-noaa committed Oct 13, 2023
1 parent 84ff40e commit 916f0f6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions meteor_packages/mats-common/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,19 +326,19 @@ Package.onUse(function (api) {
api.addAssets("public/help/top-help.html", "client");
api.addAssets("public/help/wfip2-statistic.html", "client");
api.addAssets(
"private/matsMiddle/sqlTemplates/tmpl_distinct_fcstValidEpoch_obs.sql",
"imports/startup/server/matsMiddle/sqlTemplates/tmpl_distinct_fcstValidEpoch_obs.sql",
"server"
);
api.addAssets(
"private/matsMiddle/sqlTemplates/tmpl_get_distinct_fcstLen.sql",
"imports/startup/server/matsMiddle/sqlTemplates/tmpl_get_distinct_fcstLen.sql",
"server"
);
api.addAssets(
"private/matsMiddle/sqlTemplates/tmpl_get_N_stations_mfve_IN_model.sql",
"imports/startup/server/matsMiddle/sqlTemplates/tmpl_get_N_stations_mfve_IN_model.sql",
"server"
);
api.addAssets(
"private/matsMiddle/sqlTemplates/tmpl_get_N_stations_mfve_IN_obs.sql",
"imports/startup/server/matsMiddle/sqlTemplates/tmpl_get_N_stations_mfve_IN_obs.sql",
"server"
);
});
Expand Down

0 comments on commit 916f0f6

Please sign in to comment.