Skip to content

Commit

Permalink
Remove extra blank lines
Browse files Browse the repository at this point in the history
Something has added blank lines to the start of a number of file
  • Loading branch information
hardillb committed May 31, 2023
1 parent d3cef78 commit e38896a
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion forge/db/controllers/StorageCredentials.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

module.exports = {
async updateOrCreateForProject (app, project, newCredentials = {}, { transaction } = {}) {
let origCredentials = await app.db.models.StorageCredentials.byProject(project.id)
Expand Down
1 change: 0 additions & 1 deletion forge/db/controllers/StorageFlows.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

module.exports = {
async updateOrCreateForProject (app, project, newFlows = {}, { transaction } = {}) {
let currentProjectFlows = await app.db.models.StorageFlow.byProject(project.id)
Expand Down
1 change: 0 additions & 1 deletion forge/db/controllers/TeamType.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

module.exports = {
getSetting: function (app, teamType, key) {
return app.config.teams?.[teamType.name]?.[key]
Expand Down
1 change: 0 additions & 1 deletion forge/ee/db/controllers/Subscription.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

module.exports = {
createSubscription: async function (app, team, subscription, customer) {
// Check to see if there is an existing subscription for this team.
Expand Down
1 change: 0 additions & 1 deletion forge/routes/api/admin.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

module.exports = async function (app) {
async function getStats () {
const userCount = await app.db.models.User.count({ attributes: ['admin'], group: 'admin' })
Expand Down
1 change: 0 additions & 1 deletion frontend/src/api/application.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import product from '../services/product.js'
import daysSince from '../utils/daysSince.js'

Expand Down
1 change: 0 additions & 1 deletion frontend/src/services/audit-events.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import AuditEventsGrouped from '../data/audit-events.json'

/*
Expand Down
1 change: 0 additions & 1 deletion frontend/src/services/product.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/**
*
* @param {String} userId - the unique identifier for the user
Expand Down

0 comments on commit e38896a

Please sign in to comment.