10 lines
290 B
JavaScript
10 lines
290 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Controller from '@ember/controller';
|
|
|
|
// The WithNamespaceResetting Mixin uses Controller Injection and requires us to keep this controller around
|
|
export default class JobsController extends Controller {}
|