Unverified Commit e3ac38c7 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #121829 from davidak/pantheon-team

parents 8a774cb1 8f02a448
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1412,6 +1412,12 @@
    githubId = 10221570;
    name = "Bo Bakker";
  };
  bobby285271 = {
    name = "Bobby Rong";
    email = "rjl931189261@126.com";
    github = "bobby285271";
    githubId = 20080233;
  };
  bobvanderlinden = {
    email = "bobvanderlinden@gmail.com";
    github = "bobvanderlinden";
+8 −0
Original line number Diff line number Diff line
@@ -167,6 +167,14 @@ with lib.maintainers; {
    scope = "Maintain the ecosystem around Matrix, a decentralized messenger.";
  };

  pantheon = {
    members = [
      davidak
      bobby285271
    ];
    scope = "Maintain Pantheon desktop environment and platform.";
  };

  php = {
    members = [
      aanderse
+2 −2
Original line number Diff line number Diff line
@@ -5,8 +5,8 @@
with lib;

{
  meta = {
    maintainers = with maintainers; [ ];
  meta = with lib; {
    maintainers = with maintainers; [ ] ++ teams.pantheon.members;
  };

  ###### interface
+3 −1
Original line number Diff line number Diff line
@@ -266,5 +266,7 @@ in
      } // mapAttrs' appConfigToINICompatible cfg.appConfig);
  };

  meta.maintainers = with lib.maintainers; [ ];
  meta = with lib; {
    maintainers = with maintainers; [ ] ++ teams.pantheon.members;
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@ in
      "")
  ];

  meta = {
    maintainers = with maintainers; [ ];
  meta = with lib; {
    maintainers = with maintainers; [ ] ++ teams.pantheon.members;
  };

  ###### interface
Loading