summaryrefslogtreecommitdiff
path: root/app/serializers/namespace_serializer.rb
diff options
context:
space:
mode:
authorLuke Bennett <lbennett@gitlab.com>2018-11-07 16:44:21 +0000
committerLuke Bennett <lbennett@gitlab.com>2019-02-13 00:15:57 +0000
commit534a61179e2d0d7f9f376af1d01ed536e27f5b6d (patch)
treea06cb82e175bd87c6e42edd83f606666022edf4e /app/serializers/namespace_serializer.rb
parentbc881b8455c0059acfd8c1dc5dd3bf6c329ae53c (diff)
downloadgitlab-ce-534a61179e2d0d7f9f376af1d01ed536e27f5b6d.tar.gz
Improve the GitHub and Gitea import feature table interface
These are backend changes. Use Vue for the import feature UI for "githubish" providers (GitHub and Gitea). Add "Go to project" button after a successful import. Use CI-style status icons and improve spacing of the table and its component. Adds ETag polling to the github and gitea import jobs endpoint.
Diffstat (limited to 'app/serializers/namespace_serializer.rb')
-rw-r--r--app/serializers/namespace_serializer.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/serializers/namespace_serializer.rb b/app/serializers/namespace_serializer.rb
new file mode 100644
index 00000000000..bf3f154b558
--- /dev/null
+++ b/app/serializers/namespace_serializer.rb
@@ -0,0 +1,5 @@
+# frozen_string_literal: true
+
+class NamespaceSerializer < BaseSerializer
+ entity NamespaceBasicEntity
+end