Skip to content

Commit 274f093

Browse files
ashbbolkedebruin
authored andcommitted
[AIRFLOW-2779] Make GHE auth third party licensed (#3803)
This reinstates the original license.
1 parent 6c8d35c commit 274f093

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ at licenses/LICENSE-[project].txt.
220220
(ALv2 License) hue (https://github.com/cloudera/hue/)
221221
(ALv2 License) jqclock (https://github.com/JohnRDOrazio/jQuery-Clock-Plugin)
222222
(ALv2 License) bootstrap3-typeahead (https://github.com/bassjobsen/Bootstrap-3-Typeahead)
223+
(ALv2 License) airflow.contrib.auth.backends.github_enterprise_auth
223224

224225
========================================================================
225226
MIT licenses

NOTICE

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ is subject to the terms and conditions of their respective licenses.
1313
See the LICENSE file for a list of subcomponents and dependencies and
1414
their respective licenses.
1515

16+
airflow.contrib.auth.backends.github_enterprise_auth:
17+
-----------------------------------------------------
18+
19+
* Copyright 2015 Matthew Pelland (matt@pelland.io)
20+
1621
hue:
1722
-----
1823
This product contains a modified portion of 'Hue' developed by Cloudera, Inc.

airflow/contrib/auth/backends/github_enterprise_auth.py

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Licensed to the Apache Software Foundation (ASF) under one
4-
# or more contributor license agreements. See the NOTICE file
5-
# distributed with this work for additional information
6-
# regarding copyright ownership. The ASF licenses this file
7-
# to you under the Apache License, Version 2.0 (the
8-
# "License"); you may not use this file except in compliance
9-
# with the License. You may obtain a copy of the License at
3+
# See the NOTICE file distributed with this work for additional information
4+
# regarding copyright ownership.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
109
#
1110
# http://www.apache.org/licenses/LICENSE-2.0
1211
#
13-
# Unless required by applicable law or agreed to in writing,
14-
# software distributed under the License is distributed on an
15-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16-
# KIND, either express or implied. See the License for the
17-
# specific language governing permissions and limitations
18-
# under the License.
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
1917
import flask_login
2018

2119
# Need to expose these downstream

0 commit comments

Comments
 (0)