Files
horizon/openstack_dashboard/static/dashboard/launch-instance/source/source.spec.js
Shaoquan Chen 61e4d5988b Launch Instance Model
This is the M part in MVC for launch instance that will use the APIs
to load data and send request to server via the APIs.

This model is injected into to LaunchInstanceCtrl and available to all
controllers for every step in the work flow.

To access:
 - Add to local_setting.py:
     LAUNCH_INSTANCE_NG_ENABLED = True
 - Then go to:
     http://localhost:9000/project/instances/
 - Then click the left "Launch Instance" button.

To disable the legacy launch instance button:
 - Add to local_setting.py:
    LAUNCH_INSTANCE_LEGACY_ENABLED = True

Partially Implements: blueprint launch-instance-redesign
Co-Authored-By: Travis Tripp <travis.tripp@hp.com>
Co-Authored-By: Neill Cox <neill.cox@ingenious.com.au>
Co-Authored-By: Richard Jones <r1chardj0n3s@gmail.com>
Co-Authored-By: Tyr Johanson <tyr@hp.com>
Co-Authored-By: Matt Borland <matt.borland@hp.com>
Change-Id: I040f13f7d1fd336fcd1070bdbe0c81bd5a828d43
2015-03-14 00:33:43 +00:00

25 lines
763 B
JavaScript

/* jshint globalstrict: true */
/*
* (c) Copyright 2015 Hewlett-Packard Development Company, L.P.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
(function() {
'use strict';
describe('Launch Instance Source Step', function() {
});
})();